blob: 960deb1f24a17ba2a3688271643eded6f6988587 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * arch/sh/mm/hugetlbpage.c
4 *
5 * SuperH HugeTLB page support.
6 *
7 * Cloned from sparc64 by Paul Mundt.
8 *
9 * Copyright (C) 2002, 2003 David S. Miller (davem@redhat.com)
10 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
13#include <linux/fs.h>
14#include <linux/mm.h>
15#include <linux/hugetlb.h>
16#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#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
Andi Kleena5516432008-07-23 21:27:41 -070025pte_t *huge_pte_alloc(struct mm_struct *mm,
26 unsigned long addr, unsigned long sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 pgd_t *pgd;
Paul Mundt3f787fe2006-09-27 13:11:57 +090029 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 pmd_t *pmd;
31 pte_t *pte = NULL;
32
33 pgd = pgd_offset(mm, addr);
34 if (pgd) {
Paul Mundt3f787fe2006-09-27 13:11:57 +090035 pud = pud_alloc(mm, pgd, addr);
36 if (pud) {
37 pmd = pmd_alloc(mm, pud, addr);
38 if (pmd)
Kirill A. Shutemov3ed3a4f2016-03-17 14:19:11 -070039 pte = pte_alloc_map(mm, pmd, addr);
Paul Mundt3f787fe2006-09-27 13:11:57 +090040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 }
Paul Mundt3f787fe2006-09-27 13:11:57 +090042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 return pte;
44}
45
Punit Agrawal7868a202017-07-06 15:39:42 -070046pte_t *huge_pte_offset(struct mm_struct *mm,
47 unsigned long addr, unsigned long sz)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 pgd_t *pgd;
Paul Mundt3f787fe2006-09-27 13:11:57 +090050 pud_t *pud;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 pmd_t *pmd;
52 pte_t *pte = NULL;
53
54 pgd = pgd_offset(mm, addr);
55 if (pgd) {
Paul Mundt3f787fe2006-09-27 13:11:57 +090056 pud = pud_offset(pgd, addr);
57 if (pud) {
58 pmd = pmd_offset(pud, addr);
59 if (pmd)
60 pte = pte_offset_map(pmd, addr);
61 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
Paul Mundt3f787fe2006-09-27 13:11:57 +090063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 return pte;
65}
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067int pmd_huge(pmd_t pmd)
68{
69 return 0;
70}
71
Andi Kleenceb86872008-07-23 21:27:50 -070072int pud_huge(pud_t pud)
73{
74 return 0;
75}