blob: d7ee249d6890cb30fcf10ebd608665d57ba2f781 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +10002#ifndef _ASM_POWERPC_BOOK3S_64_PGTABLE_64K_H
3#define _ASM_POWERPC_BOOK3S_64_PGTABLE_64K_H
4
5#ifndef __ASSEMBLY__
6#ifdef CONFIG_HUGETLB_PAGE
7/*
8 * We have PGD_INDEX_SIZ = 12 and PTE_INDEX_SIZE = 8, so that we can have
9 * 16GB hugepage pte in PGD and 16MB hugepage pte at PMD;
10 *
11 * Defined in such a way that we can optimize away code block at build time
12 * if CONFIG_HUGETLB_PAGE=n.
13 */
14static inline int pmd_huge(pmd_t pmd)
15{
16 /*
17 * leaf pte for huge page
18 */
Aneesh Kumar K.V66c570f2016-07-13 15:05:22 +053019 return !!(pmd_raw(pmd) & cpu_to_be64(_PAGE_PTE));
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100020}
21
22static inline int pud_huge(pud_t pud)
23{
24 /*
25 * leaf pte for huge page
26 */
Aneesh Kumar K.V66c570f2016-07-13 15:05:22 +053027 return !!(pud_raw(pud) & cpu_to_be64(_PAGE_PTE));
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100028}
29
30static inline int pgd_huge(pgd_t pgd)
31{
32 /*
33 * leaf pte for huge page
34 */
Aneesh Kumar K.V66c570f2016-07-13 15:05:22 +053035 return !!(pgd_raw(pgd) & cpu_to_be64(_PAGE_PTE));
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100036}
37#define pgd_huge pgd_huge
38
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100039/*
40 * With 64k page size, we have hugepage ptes in the pgd and pmd entries. We don't
41 * need to setup hugepage directory for them. Our pte and page directory format
42 * enable us to have this enabled.
43 */
44static inline int hugepd_ok(hugepd_t hpd)
45{
46 return 0;
47}
Aneesh Kumar K.Vfadd03c2018-06-14 16:01:52 +053048
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100049#define is_hugepd(pdep) 0
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100050
Aneesh Kumar K.Vfadd03c2018-06-14 16:01:52 +053051/*
52 * This should never get called
53 */
54static inline int get_hugepd_cache_index(int index)
55{
56 BUG();
57}
58
Michael Ellermanaad71e32017-02-14 13:11:38 +110059#else /* !CONFIG_HUGETLB_PAGE */
60static inline int pmd_huge(pmd_t pmd) { return 0; }
61static inline int pud_huge(pud_t pud) { return 0; }
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100062#endif /* CONFIG_HUGETLB_PAGE */
63
Aneesh Kumar K.V6cc1a0e2016-04-29 23:25:56 +100064static inline int remap_4k_pfn(struct vm_area_struct *vma, unsigned long addr,
65 unsigned long pfn, pgprot_t prot)
66{
67 if (radix_enabled())
68 BUG();
69 return hash__remap_4k_pfn(vma, addr, pfn, prot);
Aneesh Kumar K.V6cc1a0e2016-04-29 23:25:56 +100070}
Aneesh Kumar K.Va9252aae2016-04-29 23:25:55 +100071#endif /* __ASSEMBLY__ */
72#endif /*_ASM_POWERPC_BOOK3S_64_PGTABLE_64K_H */