powerpc/nohash: fix hash related comments in pgtable.h
[linux-block.git] / arch / powerpc / include / asm / nohash / 32 / pgtable.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
17ed9e31
AK
2#ifndef _ASM_POWERPC_NOHASH_32_PGTABLE_H
3#define _ASM_POWERPC_NOHASH_32_PGTABLE_H
f88df14b 4
9849a569 5#define __ARCH_USE_5LEVEL_HACK
d1953c88 6#include <asm-generic/pgtable-nopmd.h>
f88df14b
DG
7
8#ifndef __ASSEMBLY__
9#include <linux/sched.h>
10#include <linux/threads.h>
6b622669 11#include <asm/mmu.h> /* For sub-arch specific PPC_PIN_SIZE */
36a7eeaf 12#include <asm/asm-405.h>
f88df14b 13
f637a49e 14extern unsigned long ioremap_bot;
b98ac05d
BH
15
16#ifdef CONFIG_44x
17extern int icache_44x_need_flush;
18#endif
19
f88df14b
DG
20#endif /* __ASSEMBLY__ */
21
9b081e10
CL
22#define PTE_INDEX_SIZE PTE_SHIFT
23#define PMD_INDEX_SIZE 0
24#define PUD_INDEX_SIZE 0
25#define PGD_INDEX_SIZE (32 - PGDIR_SHIFT)
26
27#define PMD_CACHE_INDEX PMD_INDEX_SIZE
fae22116 28#define PUD_CACHE_INDEX PUD_INDEX_SIZE
9b081e10
CL
29
30#ifndef __ASSEMBLY__
31#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_INDEX_SIZE)
32#define PMD_TABLE_SIZE 0
33#define PUD_TABLE_SIZE 0
34#define PGD_TABLE_SIZE (sizeof(pgd_t) << PGD_INDEX_SIZE)
35#endif /* __ASSEMBLY__ */
36
37#define PTRS_PER_PTE (1 << PTE_INDEX_SIZE)
38#define PTRS_PER_PGD (1 << PGD_INDEX_SIZE)
39
f88df14b
DG
40/*
41 * The normal case is that PTEs are 32-bits and we have a 1-page
42 * 1024-entry pgdir pointing to 1-page 1024-entry PTE pages. -- paulus
43 *
44 * For any >32-bit physical address platform, we can use the following
45 * two level page table layout where the pgdir is 8KB and the MS 13 bits
46 * are an index to the second level table. The combined pgdir/pmd first
47 * level has 2048 entries and the second level has 512 64-bit PTE entries.
48 * -Matt
49 */
f88df14b 50/* PGDIR_SHIFT determines what a top-level page table entry can map */
9b081e10 51#define PGDIR_SHIFT (PAGE_SHIFT + PTE_INDEX_SIZE)
f88df14b
DG
52#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
53#define PGDIR_MASK (~(PGDIR_SIZE-1))
54
9b081e10
CL
55/* Bits to mask out from a PGD to get to the PUD page */
56#define PGD_MASKED_BITS 0
f88df14b
DG
57
58#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
d016bf7e 59#define FIRST_USER_ADDRESS 0UL
f88df14b 60
f88df14b 61#define pte_ERROR(e) \
a7696b36 62 pr_err("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \
0aeafb0c 63 (unsigned long long)pte_val(e))
f88df14b 64#define pgd_ERROR(e) \
a7696b36 65 pr_err("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
f88df14b 66
f637a49e
BH
67/*
68 * This is the bottom of the PKMAP area with HIGHMEM or an arbitrary
69 * value (for now) on others, from where we can start layout kernel
70 * virtual space that goes below PKMAP and FIXMAP
71 */
72#ifdef CONFIG_HIGHMEM
73#define KVIRT_TOP PKMAP_BASE
74#else
75#define KVIRT_TOP (0xfe000000UL) /* for now, could be FIXMAP_BASE ? */
76#endif
77
78/*
79 * ioremap_bot starts at that address. Early ioremaps move down from there,
80 * until mem_init() at which point this becomes the top of the vmalloc
81 * and ioremap space
82 */
8b31e49d
BH
83#ifdef CONFIG_NOT_COHERENT_CACHE
84#define IOREMAP_TOP ((KVIRT_TOP - CONFIG_CONSISTENT_SIZE) & PAGE_MASK)
85#else
f637a49e 86#define IOREMAP_TOP KVIRT_TOP
8b31e49d 87#endif
f637a49e 88
f88df14b
DG
89/*
90 * Just any arbitrary offset to the start of the vmalloc VM area: the
f637a49e 91 * current 16MB value just means that there will be a 64MB "hole" after the
f88df14b
DG
92 * physical memory until the kernel virtual memory starts. That means that
93 * any out-of-bounds memory accesses will hopefully be caught.
94 * The vmalloc() routines leaves a hole of 4kB between each vmalloced
95 * area for the same reason. ;)
96 *
97 * We no longer map larger than phys RAM with the BATs so we don't have
98 * to worry about the VMALLOC_OFFSET causing problems. We do have to worry
99 * about clashes between our early calls to ioremap() that start growing down
e974cd4b 100 * from IOREMAP_TOP being run into the VM area allocations (growing upwards
f88df14b
DG
101 * from VMALLOC_START). For this reason we have ioremap_bot to check when
102 * we actually run into our mappings setup in the early boot with the VM
103 * system. This really does become a problem for machines with good amounts
104 * of RAM. -- Cort
105 */
106#define VMALLOC_OFFSET (0x1000000) /* 16M */
107#ifdef PPC_PIN_SIZE
108#define VMALLOC_START (((_ALIGN((long)high_memory, PPC_PIN_SIZE) + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
109#else
110#define VMALLOC_START ((((long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
111#endif
112#define VMALLOC_END ioremap_bot
113
114/*
115 * Bits in a linux-style PTE. These match the bits in the
116 * (hardware-defined) PowerPC PTE as closely as possible.
117 */
118
119#if defined(CONFIG_40x)
17ed9e31 120#include <asm/nohash/32/pte-40x.h>
f88df14b 121#elif defined(CONFIG_44x)
17ed9e31 122#include <asm/nohash/32/pte-44x.h>
76acc2c1 123#elif defined(CONFIG_FSL_BOOKE) && defined(CONFIG_PTE_64BIT)
17ed9e31 124#include <asm/nohash/pte-book3e.h>
f88df14b 125#elif defined(CONFIG_FSL_BOOKE)
17ed9e31 126#include <asm/nohash/32/pte-fsl-booke.h>
968159c0 127#elif defined(CONFIG_PPC_8xx)
17ed9e31 128#include <asm/nohash/32/pte-8xx.h>
4ee7084e 129#endif
f88df14b 130
71087002
BH
131/* And here we include common definitions */
132#include <asm/pte-common.h>
f88df14b
DG
133
134#ifndef __ASSEMBLY__
f88df14b 135
9bf2b5cd 136#define pte_clear(mm, addr, ptep) \
45201c87 137 do { pte_update(ptep, ~0, 0); } while (0)
f88df14b
DG
138
139#define pmd_none(pmd) (!pmd_val(pmd))
140#define pmd_bad(pmd) (pmd_val(pmd) & _PMD_BAD)
141#define pmd_present(pmd) (pmd_val(pmd) & _PMD_PRESENT_MASK)
f281b5d5
AK
142static inline void pmd_clear(pmd_t *pmdp)
143{
144 *pmdp = __pmd(0);
145}
146
147
f88df14b 148
f88df14b 149/*
c605782b
BH
150 * PTE updates. This function is called whenever an existing
151 * valid PTE is updated. This does -not- include set_pte_at()
152 * which nowadays only sets a new PTE.
153 *
154 * Depending on the type of MMU, we may need to use atomic updates
155 * and the PTE may be either 32 or 64 bit wide. In the later case,
156 * when using atomic updates, only the low part of the PTE is
157 * accessed atomically.
f88df14b 158 *
c605782b
BH
159 * In addition, on 44x, we also maintain a global flag indicating
160 * that an executable user mapping was modified, which is needed
161 * to properly flush the virtually tagged instruction cache of
162 * those implementations.
f88df14b
DG
163 */
164#ifndef CONFIG_PTE_64BIT
1bc54c03
BH
165static inline unsigned long pte_update(pte_t *p,
166 unsigned long clr,
f88df14b
DG
167 unsigned long set)
168{
1bc54c03 169#ifdef PTE_ATOMIC_UPDATES
f88df14b
DG
170 unsigned long old, tmp;
171
172 __asm__ __volatile__("\
1731: lwarx %0,0,%3\n\
174 andc %1,%0,%4\n\
175 or %1,%1,%5\n"
176 PPC405_ERR77(0,%3)
177" stwcx. %1,0,%3\n\
178 bne- 1b"
179 : "=&r" (old), "=&r" (tmp), "=m" (*p)
180 : "r" (p), "r" (clr), "r" (set), "m" (*p)
181 : "cc" );
1bc54c03
BH
182#else /* PTE_ATOMIC_UPDATES */
183 unsigned long old = pte_val(*p);
184 *p = __pte((old & ~clr) | set);
185#endif /* !PTE_ATOMIC_UPDATES */
186
b98ac05d 187#ifdef CONFIG_44x
ea3cc330 188 if ((old & _PAGE_USER) && (old & _PAGE_EXEC))
b98ac05d
BH
189 icache_44x_need_flush = 1;
190#endif
f88df14b
DG
191 return old;
192}
1bc54c03 193#else /* CONFIG_PTE_64BIT */
1bc54c03
BH
194static inline unsigned long long pte_update(pte_t *p,
195 unsigned long clr,
196 unsigned long set)
f88df14b 197{
1bc54c03 198#ifdef PTE_ATOMIC_UPDATES
f88df14b
DG
199 unsigned long long old;
200 unsigned long tmp;
201
202 __asm__ __volatile__("\
2031: lwarx %L0,0,%4\n\
204 lwzx %0,0,%3\n\
205 andc %1,%L0,%5\n\
206 or %1,%1,%6\n"
207 PPC405_ERR77(0,%3)
208" stwcx. %1,0,%4\n\
209 bne- 1b"
210 : "=&r" (old), "=&r" (tmp), "=m" (*p)
211 : "r" (p), "r" ((unsigned long)(p) + 4), "r" (clr), "r" (set), "m" (*p)
212 : "cc" );
1bc54c03
BH
213#else /* PTE_ATOMIC_UPDATES */
214 unsigned long long old = pte_val(*p);
585583d9 215 *p = __pte((old & ~(unsigned long long)clr) | set);
1bc54c03
BH
216#endif /* !PTE_ATOMIC_UPDATES */
217
b98ac05d 218#ifdef CONFIG_44x
ea3cc330 219 if ((old & _PAGE_USER) && (old & _PAGE_EXEC))
b98ac05d
BH
220 icache_44x_need_flush = 1;
221#endif
f88df14b
DG
222 return old;
223}
1bc54c03 224#endif /* CONFIG_PTE_64BIT */
f88df14b 225
f88df14b
DG
226#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
227static inline int __ptep_test_and_clear_young(unsigned int context, unsigned long addr, pte_t *ptep)
228{
229 unsigned long old;
230 old = pte_update(ptep, _PAGE_ACCESSED, 0);
f88df14b
DG
231 return (old & _PAGE_ACCESSED) != 0;
232}
233#define ptep_test_and_clear_young(__vma, __addr, __ptep) \
234 __ptep_test_and_clear_young((__vma)->vm_mm->context.id, __addr, __ptep)
235
f88df14b
DG
236#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
237static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
238 pte_t *ptep)
239{
45201c87 240 return __pte(pte_update(ptep, ~0, 0));
f88df14b
DG
241}
242
243#define __HAVE_ARCH_PTEP_SET_WRPROTECT
244static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr,
245 pte_t *ptep)
246{
a7b9f671 247 pte_update(ptep, (_PAGE_RW | _PAGE_HWWRITE), _PAGE_RO);
f88df14b 248}
016b33c4
AW
249static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
250 unsigned long addr, pte_t *ptep)
251{
252 ptep_set_wrprotect(mm, addr, ptep);
253}
254
f88df14b 255
e4c1112c 256static inline void __ptep_set_access_flags(struct vm_area_struct *vma,
b3603e17 257 pte_t *ptep, pte_t entry,
e4c1112c
AK
258 unsigned long address,
259 int psize)
f88df14b 260{
a7b9f671 261 unsigned long set = pte_val(entry) &
ea3cc330 262 (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC);
35175033 263 unsigned long clr = ~pte_val(entry) & (_PAGE_RO | _PAGE_NA);
a7b9f671
LC
264
265 pte_update(ptep, clr, set);
bd5050e3
AK
266
267 flush_tlb_page(vma, address);
f88df14b
DG
268}
269
45201c87
CL
270static inline int pte_young(pte_t pte)
271{
272 return pte_val(pte) & _PAGE_ACCESSED;
273}
274
f88df14b 275#define __HAVE_ARCH_PTE_SAME
45201c87 276#define pte_same(A,B) ((pte_val(A) ^ pte_val(B)) == 0)
f88df14b
DG
277
278/*
279 * Note that on Book E processors, the pmd contains the kernel virtual
280 * (lowmem) address of the pte page. The physical address is less useful
281 * because everything runs with translation enabled (even the TLB miss
282 * handler). On everything else the pmd contains the physical address
283 * of the pte page. -- paulus
284 */
285#ifndef CONFIG_BOOKE
286#define pmd_page_vaddr(pmd) \
287 ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
288#define pmd_page(pmd) \
43b5fefc 289 pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT)
f88df14b
DG
290#else
291#define pmd_page_vaddr(pmd) \
292 ((unsigned long) (pmd_val(pmd) & PAGE_MASK))
293#define pmd_page(pmd) \
af892e0f 294 pfn_to_page((__pa(pmd_val(pmd)) >> PAGE_SHIFT))
f88df14b
DG
295#endif
296
297/* to find an entry in a kernel page-table-directory */
298#define pgd_offset_k(address) pgd_offset(&init_mm, address)
299
300/* to find an entry in a page-table-directory */
301#define pgd_index(address) ((address) >> PGDIR_SHIFT)
302#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
303
f88df14b
DG
304/* Find an entry in the third-level page table.. */
305#define pte_index(address) \
306 (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
307#define pte_offset_kernel(dir, addr) \
be00ed72
CL
308 (pmd_bad(*(dir)) ? NULL : (pte_t *)pmd_page_vaddr(*(dir)) + \
309 pte_index(addr))
f88df14b 310#define pte_offset_map(dir, addr) \
ece0e2b6
PZ
311 ((pte_t *) kmap_atomic(pmd_page(*(dir))) + pte_index(addr))
312#define pte_unmap(pte) kunmap_atomic(pte)
f88df14b 313
f88df14b
DG
314/*
315 * Encode and decode a swap entry.
316 * Note that the bits we use in a PTE for representing a swap entry
45201c87 317 * must not include the _PAGE_PRESENT bit.
780fc564 318 * -- paulus
f88df14b
DG
319 */
320#define __swp_type(entry) ((entry).val & 0x1f)
321#define __swp_offset(entry) ((entry).val >> 5)
322#define __swp_entry(type, offset) ((swp_entry_t) { (type) | ((offset) << 5) })
323#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 })
324#define __swp_entry_to_pte(x) ((pte_t) { (x).val << 3 })
325
4386c096
CL
326int map_kernel_page(unsigned long va, phys_addr_t pa, int flags);
327
f88df14b
DG
328#endif /* !__ASSEMBLY__ */
329
17ed9e31 330#endif /* __ASM_POWERPC_NOHASH_32_PGTABLE_H */