powerpc/mm: Move hash and no hash code to separate files
[linux-2.6-block.git] / arch / powerpc / include / asm / book3s / 64 / hash-4k.h
CommitLineData
ab537dca
AK
1#ifndef _ASM_POWERPC_BOOK3S_64_HASH_4K_H
2#define _ASM_POWERPC_BOOK3S_64_HASH_4K_H
3/*
4 * Entries per page directory level. The PTE level must use a 64b record
5 * for each page table entry. The PMD and PGD level use a 32b record for
6 * each entry by assuming that each entry is page aligned.
7 */
8#define PTE_INDEX_SIZE 9
9#define PMD_INDEX_SIZE 7
10#define PUD_INDEX_SIZE 9
11#define PGD_INDEX_SIZE 9
12
13#ifndef __ASSEMBLY__
14#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_INDEX_SIZE)
15#define PMD_TABLE_SIZE (sizeof(pmd_t) << PMD_INDEX_SIZE)
16#define PUD_TABLE_SIZE (sizeof(pud_t) << PUD_INDEX_SIZE)
17#define PGD_TABLE_SIZE (sizeof(pgd_t) << PGD_INDEX_SIZE)
18#endif /* __ASSEMBLY__ */
19
20#define PTRS_PER_PTE (1 << PTE_INDEX_SIZE)
21#define PTRS_PER_PMD (1 << PMD_INDEX_SIZE)
22#define PTRS_PER_PUD (1 << PUD_INDEX_SIZE)
23#define PTRS_PER_PGD (1 << PGD_INDEX_SIZE)
24
25/* PMD_SHIFT determines what a second-level page table entry can map */
26#define PMD_SHIFT (PAGE_SHIFT + PTE_INDEX_SIZE)
27#define PMD_SIZE (1UL << PMD_SHIFT)
28#define PMD_MASK (~(PMD_SIZE-1))
29
30/* With 4k base page size, hugepage PTEs go at the PMD level */
31#define MIN_HUGEPTE_SHIFT PMD_SHIFT
32
33/* PUD_SHIFT determines what a third-level page table entry can map */
34#define PUD_SHIFT (PMD_SHIFT + PMD_INDEX_SIZE)
35#define PUD_SIZE (1UL << PUD_SHIFT)
36#define PUD_MASK (~(PUD_SIZE-1))
37
38/* PGDIR_SHIFT determines what a fourth-level page table entry can map */
39#define PGDIR_SHIFT (PUD_SHIFT + PUD_INDEX_SIZE)
40#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
41#define PGDIR_MASK (~(PGDIR_SIZE-1))
42
43/* Bits to mask out from a PMD to get to the PTE page */
44#define PMD_MASKED_BITS 0
45/* Bits to mask out from a PUD to get to the PMD page */
46#define PUD_MASKED_BITS 0
47/* Bits to mask out from a PGD to get to the PUD page */
48#define PGD_MASKED_BITS 0
c605782b 49
c605782b
BH
50/* PTE flags to conserve for HPTE identification */
51#define _PAGE_HPTEFLAGS (_PAGE_BUSY | _PAGE_HASHPTE | \
bf680d51 52 _PAGE_F_SECOND | _PAGE_F_GIX)
c605782b 53
b0412ea9 54#define _PAGE_4K_PFN 0
ab537dca
AK
55#ifndef __ASSEMBLY__
56/*
368ced78 57 * On all 4K setups, remap_4k_pfn() equates to remap_pfn_range()
ab537dca 58 */
ab537dca
AK
59#define remap_4k_pfn(vma, addr, pfn, prot) \
60 remap_pfn_range((vma), (addr), (pfn), PAGE_SIZE, (prot))
61
26a344ae
AK
62#ifdef CONFIG_HUGETLB_PAGE
63/*
64 * For 4k page size, we support explicit hugepage via hugepd
65 */
66static inline int pmd_huge(pmd_t pmd)
67{
68 return 0;
69}
70
71static inline int pud_huge(pud_t pud)
72{
73 return 0;
74}
75
76static inline int pgd_huge(pgd_t pgd)
77{
78 return 0;
79}
80#define pgd_huge pgd_huge
81
82static inline int hugepd_ok(hugepd_t hpd)
83{
84 /*
6a119eae
AK
85 * if it is not a pte and have hugepd shift mask
86 * set, then it is a hugepd directory pointer
26a344ae 87 */
6a119eae
AK
88 if (!(hpd.pd & _PAGE_PTE) &&
89 ((hpd.pd & HUGEPD_SHIFT_MASK) != 0))
90 return true;
91 return false;
26a344ae
AK
92}
93#define is_hugepd(hpd) (hugepd_ok(hpd))
94#endif
95
ab537dca
AK
96#endif /* !__ASSEMBLY__ */
97
98#endif /* _ASM_POWERPC_BOOK3S_64_HASH_4K_H */