blob: 5134ade2e850162c70d288c1b293b38a7aae6a1c [file] [log] [blame]
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +05301#ifndef _ASM_POWERPC_NOHASH_32_PGTABLE_H
2#define _ASM_POWERPC_NOHASH_32_PGTABLE_H
David Gibsonf88df142007-04-30 16:30:56 +10003
Kirill A. Shutemov9849a562017-03-09 17:24:05 +03004#define __ARCH_USE_5LEVEL_HACK
David Gibsond1953c82007-05-08 12:46:49 +10005#include <asm-generic/pgtable-nopmd.h>
David Gibsonf88df142007-04-30 16:30:56 +10006
7#ifndef __ASSEMBLY__
8#include <linux/sched.h>
9#include <linux/threads.h>
David Gibsonf88df142007-04-30 16:30:56 +100010#include <asm/io.h> /* For sub-arch specific PPC_PIN_SIZE */
David Gibsonf88df142007-04-30 16:30:56 +100011
Benjamin Herrenschmidtf637a492009-05-27 13:44:50 +100012extern unsigned long ioremap_bot;
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +110013
14#ifdef CONFIG_44x
15extern int icache_44x_need_flush;
16#endif
17
David Gibsonf88df142007-04-30 16:30:56 +100018#endif /* __ASSEMBLY__ */
19
Christophe Leroy9b081e12016-12-07 08:47:24 +010020#define PTE_INDEX_SIZE PTE_SHIFT
21#define PMD_INDEX_SIZE 0
22#define PUD_INDEX_SIZE 0
23#define PGD_INDEX_SIZE (32 - PGDIR_SHIFT)
24
25#define PMD_CACHE_INDEX PMD_INDEX_SIZE
26
27#ifndef __ASSEMBLY__
28#define PTE_TABLE_SIZE (sizeof(pte_t) << PTE_INDEX_SIZE)
29#define PMD_TABLE_SIZE 0
30#define PUD_TABLE_SIZE 0
31#define PGD_TABLE_SIZE (sizeof(pgd_t) << PGD_INDEX_SIZE)
32#endif /* __ASSEMBLY__ */
33
34#define PTRS_PER_PTE (1 << PTE_INDEX_SIZE)
35#define PTRS_PER_PGD (1 << PGD_INDEX_SIZE)
36
David Gibsonf88df142007-04-30 16:30:56 +100037/*
David Gibsonf88df142007-04-30 16:30:56 +100038 * The normal case is that PTEs are 32-bits and we have a 1-page
39 * 1024-entry pgdir pointing to 1-page 1024-entry PTE pages. -- paulus
40 *
41 * For any >32-bit physical address platform, we can use the following
42 * two level page table layout where the pgdir is 8KB and the MS 13 bits
43 * are an index to the second level table. The combined pgdir/pmd first
44 * level has 2048 entries and the second level has 512 64-bit PTE entries.
45 * -Matt
46 */
David Gibsonf88df142007-04-30 16:30:56 +100047/* PGDIR_SHIFT determines what a top-level page table entry can map */
Christophe Leroy9b081e12016-12-07 08:47:24 +010048#define PGDIR_SHIFT (PAGE_SHIFT + PTE_INDEX_SIZE)
David Gibsonf88df142007-04-30 16:30:56 +100049#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
50#define PGDIR_MASK (~(PGDIR_SIZE-1))
51
Christophe Leroy9b081e12016-12-07 08:47:24 +010052/* Bits to mask out from a PGD to get to the PUD page */
53#define PGD_MASKED_BITS 0
David Gibsonf88df142007-04-30 16:30:56 +100054
55#define USER_PTRS_PER_PGD (TASK_SIZE / PGDIR_SIZE)
Kirill A. Shutemovd016bf72015-02-11 15:26:41 -080056#define FIRST_USER_ADDRESS 0UL
David Gibsonf88df142007-04-30 16:30:56 +100057
David Gibsonf88df142007-04-30 16:30:56 +100058#define pte_ERROR(e) \
Anton Blancharda7696b32014-09-17 14:39:39 +100059 pr_err("%s:%d: bad pte %llx.\n", __FILE__, __LINE__, \
David Gibson0aeafb02007-05-04 16:47:51 +100060 (unsigned long long)pte_val(e))
David Gibsonf88df142007-04-30 16:30:56 +100061#define pgd_ERROR(e) \
Anton Blancharda7696b32014-09-17 14:39:39 +100062 pr_err("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
David Gibsonf88df142007-04-30 16:30:56 +100063
64/*
Benjamin Herrenschmidtf637a492009-05-27 13:44:50 +100065 * This is the bottom of the PKMAP area with HIGHMEM or an arbitrary
66 * value (for now) on others, from where we can start layout kernel
67 * virtual space that goes below PKMAP and FIXMAP
68 */
69#ifdef CONFIG_HIGHMEM
70#define KVIRT_TOP PKMAP_BASE
71#else
72#define KVIRT_TOP (0xfe000000UL) /* for now, could be FIXMAP_BASE ? */
73#endif
74
75/*
76 * ioremap_bot starts at that address. Early ioremaps move down from there,
77 * until mem_init() at which point this becomes the top of the vmalloc
78 * and ioremap space
79 */
Benjamin Herrenschmidt8b31e492009-05-27 13:50:33 +100080#ifdef CONFIG_NOT_COHERENT_CACHE
81#define IOREMAP_TOP ((KVIRT_TOP - CONFIG_CONSISTENT_SIZE) & PAGE_MASK)
82#else
Benjamin Herrenschmidtf637a492009-05-27 13:44:50 +100083#define IOREMAP_TOP KVIRT_TOP
Benjamin Herrenschmidt8b31e492009-05-27 13:50:33 +100084#endif
Benjamin Herrenschmidtf637a492009-05-27 13:44:50 +100085
86/*
David Gibsonf88df142007-04-30 16:30:56 +100087 * Just any arbitrary offset to the start of the vmalloc VM area: the
Benjamin Herrenschmidtf637a492009-05-27 13:44:50 +100088 * current 16MB value just means that there will be a 64MB "hole" after the
David Gibsonf88df142007-04-30 16:30:56 +100089 * physical memory until the kernel virtual memory starts. That means that
90 * any out-of-bounds memory accesses will hopefully be caught.
91 * The vmalloc() routines leaves a hole of 4kB between each vmalloced
92 * area for the same reason. ;)
93 *
94 * We no longer map larger than phys RAM with the BATs so we don't have
95 * to worry about the VMALLOC_OFFSET causing problems. We do have to worry
96 * about clashes between our early calls to ioremap() that start growing down
Christophe Leroye974cd42016-02-09 17:08:10 +010097 * from IOREMAP_TOP being run into the VM area allocations (growing upwards
David Gibsonf88df142007-04-30 16:30:56 +100098 * from VMALLOC_START). For this reason we have ioremap_bot to check when
99 * we actually run into our mappings setup in the early boot with the VM
100 * system. This really does become a problem for machines with good amounts
101 * of RAM. -- Cort
102 */
103#define VMALLOC_OFFSET (0x1000000) /* 16M */
104#ifdef PPC_PIN_SIZE
105#define VMALLOC_START (((_ALIGN((long)high_memory, PPC_PIN_SIZE) + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
106#else
107#define VMALLOC_START ((((long)high_memory + VMALLOC_OFFSET) & ~(VMALLOC_OFFSET-1)))
108#endif
109#define VMALLOC_END ioremap_bot
110
111/*
112 * Bits in a linux-style PTE. These match the bits in the
113 * (hardware-defined) PowerPC PTE as closely as possible.
114 */
115
116#if defined(CONFIG_40x)
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +0530117#include <asm/nohash/32/pte-40x.h>
David Gibsonf88df142007-04-30 16:30:56 +1000118#elif defined(CONFIG_44x)
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +0530119#include <asm/nohash/32/pte-44x.h>
Kumar Gala76acc2c2009-09-01 15:48:42 +0000120#elif defined(CONFIG_FSL_BOOKE) && defined(CONFIG_PTE_64BIT)
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +0530121#include <asm/nohash/pte-book3e.h>
David Gibsonf88df142007-04-30 16:30:56 +1000122#elif defined(CONFIG_FSL_BOOKE)
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +0530123#include <asm/nohash/32/pte-fsl-booke.h>
David Gibsonf88df142007-04-30 16:30:56 +1000124#elif defined(CONFIG_8xx)
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +0530125#include <asm/nohash/32/pte-8xx.h>
Becky Bruce4ee70842008-09-24 11:01:24 -0500126#endif
David Gibsonf88df142007-04-30 16:30:56 +1000127
Benjamin Herrenschmidt71087002009-03-19 19:34:09 +0000128/* And here we include common definitions */
129#include <asm/pte-common.h>
David Gibsonf88df142007-04-30 16:30:56 +1000130
131#ifndef __ASSEMBLY__
David Gibsonf88df142007-04-30 16:30:56 +1000132
Kumar Gala9bf2b5c2008-07-16 15:54:21 -0500133#define pte_clear(mm, addr, ptep) \
134 do { pte_update(ptep, ~_PAGE_HASHPTE, 0); } while (0)
David Gibsonf88df142007-04-30 16:30:56 +1000135
136#define pmd_none(pmd) (!pmd_val(pmd))
137#define pmd_bad(pmd) (pmd_val(pmd) & _PMD_BAD)
138#define pmd_present(pmd) (pmd_val(pmd) & _PMD_PRESENT_MASK)
Aneesh Kumar K.Vf281b5d2015-12-01 09:06:35 +0530139static inline void pmd_clear(pmd_t *pmdp)
140{
141 *pmdp = __pmd(0);
142}
143
144
David Gibsonf88df142007-04-30 16:30:56 +1000145
David Gibsonf88df142007-04-30 16:30:56 +1000146/*
147 * When flushing the tlb entry for a page, we also need to flush the hash
148 * table entry. flush_hash_pages is assembler (for speed) in hashtable.S.
149 */
150extern int flush_hash_pages(unsigned context, unsigned long va,
151 unsigned long pmdval, int count);
152
153/* Add an HPTE to the hash table */
154extern void add_hash_page(unsigned context, unsigned long va,
155 unsigned long pmdval);
156
Becky Bruce4ee70842008-09-24 11:01:24 -0500157/* Flush an entry from the TLB/hash table */
158extern void flush_hash_entry(struct mm_struct *mm, pte_t *ptep,
159 unsigned long address);
160
David Gibsonf88df142007-04-30 16:30:56 +1000161/*
Benjamin Herrenschmidtc6057822009-03-10 17:53:29 +0000162 * PTE updates. This function is called whenever an existing
163 * valid PTE is updated. This does -not- include set_pte_at()
164 * which nowadays only sets a new PTE.
David Gibsonf88df142007-04-30 16:30:56 +1000165 *
Benjamin Herrenschmidtc6057822009-03-10 17:53:29 +0000166 * Depending on the type of MMU, we may need to use atomic updates
167 * and the PTE may be either 32 or 64 bit wide. In the later case,
168 * when using atomic updates, only the low part of the PTE is
169 * accessed atomically.
170 *
171 * In addition, on 44x, we also maintain a global flag indicating
172 * that an executable user mapping was modified, which is needed
173 * to properly flush the virtually tagged instruction cache of
174 * those implementations.
David Gibsonf88df142007-04-30 16:30:56 +1000175 */
176#ifndef CONFIG_PTE_64BIT
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000177static inline unsigned long pte_update(pte_t *p,
178 unsigned long clr,
David Gibsonf88df142007-04-30 16:30:56 +1000179 unsigned long set)
180{
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000181#ifdef PTE_ATOMIC_UPDATES
David Gibsonf88df142007-04-30 16:30:56 +1000182 unsigned long old, tmp;
183
184 __asm__ __volatile__("\
1851: lwarx %0,0,%3\n\
186 andc %1,%0,%4\n\
187 or %1,%1,%5\n"
188 PPC405_ERR77(0,%3)
189" stwcx. %1,0,%3\n\
190 bne- 1b"
191 : "=&r" (old), "=&r" (tmp), "=m" (*p)
192 : "r" (p), "r" (clr), "r" (set), "m" (*p)
193 : "cc" );
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000194#else /* PTE_ATOMIC_UPDATES */
195 unsigned long old = pte_val(*p);
196 *p = __pte((old & ~clr) | set);
197#endif /* !PTE_ATOMIC_UPDATES */
198
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100199#ifdef CONFIG_44x
Benjamin Herrenschmidtea3cc332009-08-18 19:00:34 +0000200 if ((old & _PAGE_USER) && (old & _PAGE_EXEC))
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100201 icache_44x_need_flush = 1;
202#endif
David Gibsonf88df142007-04-30 16:30:56 +1000203 return old;
204}
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000205#else /* CONFIG_PTE_64BIT */
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000206static inline unsigned long long pte_update(pte_t *p,
207 unsigned long clr,
208 unsigned long set)
David Gibsonf88df142007-04-30 16:30:56 +1000209{
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000210#ifdef PTE_ATOMIC_UPDATES
David Gibsonf88df142007-04-30 16:30:56 +1000211 unsigned long long old;
212 unsigned long tmp;
213
214 __asm__ __volatile__("\
2151: lwarx %L0,0,%4\n\
216 lwzx %0,0,%3\n\
217 andc %1,%L0,%5\n\
218 or %1,%1,%6\n"
219 PPC405_ERR77(0,%3)
220" stwcx. %1,0,%4\n\
221 bne- 1b"
222 : "=&r" (old), "=&r" (tmp), "=m" (*p)
223 : "r" (p), "r" ((unsigned long)(p) + 4), "r" (clr), "r" (set), "m" (*p)
224 : "cc" );
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000225#else /* PTE_ATOMIC_UPDATES */
226 unsigned long long old = pte_val(*p);
Kumar Gala585583d2008-07-14 08:08:45 -0500227 *p = __pte((old & ~(unsigned long long)clr) | set);
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000228#endif /* !PTE_ATOMIC_UPDATES */
229
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100230#ifdef CONFIG_44x
Benjamin Herrenschmidtea3cc332009-08-18 19:00:34 +0000231 if ((old & _PAGE_USER) && (old & _PAGE_EXEC))
Benjamin Herrenschmidtb98ac05d2007-10-31 16:42:19 +1100232 icache_44x_need_flush = 1;
233#endif
David Gibsonf88df142007-04-30 16:30:56 +1000234 return old;
235}
Benjamin Herrenschmidt1bc54c02008-07-08 15:54:40 +1000236#endif /* CONFIG_PTE_64BIT */
David Gibsonf88df142007-04-30 16:30:56 +1000237
238/*
Becky Brucebf2737f2008-06-14 09:12:44 +1000239 * 2.6 calls this without flushing the TLB entry; this is wrong
240 * for our hash-based implementation, we fix that up here.
David Gibsonf88df142007-04-30 16:30:56 +1000241 */
242#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
243static inline int __ptep_test_and_clear_young(unsigned int context, unsigned long addr, pte_t *ptep)
244{
245 unsigned long old;
246 old = pte_update(ptep, _PAGE_ACCESSED, 0);
247#if _PAGE_HASHPTE != 0
248 if (old & _PAGE_HASHPTE) {
249 unsigned long ptephys = __pa(ptep) & PAGE_MASK;
250 flush_hash_pages(context, addr, ptephys, 1);
251 }
252#endif
253 return (old & _PAGE_ACCESSED) != 0;
254}
255#define ptep_test_and_clear_young(__vma, __addr, __ptep) \
256 __ptep_test_and_clear_young((__vma)->vm_mm->context.id, __addr, __ptep)
257
David Gibsonf88df142007-04-30 16:30:56 +1000258#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
259static inline pte_t ptep_get_and_clear(struct mm_struct *mm, unsigned long addr,
260 pte_t *ptep)
261{
262 return __pte(pte_update(ptep, ~_PAGE_HASHPTE, 0));
263}
264
265#define __HAVE_ARCH_PTEP_SET_WRPROTECT
266static inline void ptep_set_wrprotect(struct mm_struct *mm, unsigned long addr,
267 pte_t *ptep)
268{
LEROY Christophea7b9f672015-01-19 17:04:38 +0100269 pte_update(ptep, (_PAGE_RW | _PAGE_HWWRITE), _PAGE_RO);
David Gibsonf88df142007-04-30 16:30:56 +1000270}
Andy Whitcroft016b33c2008-06-26 19:55:58 +1000271static inline void huge_ptep_set_wrprotect(struct mm_struct *mm,
272 unsigned long addr, pte_t *ptep)
273{
274 ptep_set_wrprotect(mm, addr, ptep);
275}
276
David Gibsonf88df142007-04-30 16:30:56 +1000277
Aneesh Kumar K.Vc6d1a762016-08-24 15:03:38 +0530278static inline void __ptep_set_access_flags(struct mm_struct *mm,
Aneesh Kumar K.Vb3603e12016-11-28 11:47:02 +0530279 pte_t *ptep, pte_t entry,
280 unsigned long address)
David Gibsonf88df142007-04-30 16:30:56 +1000281{
LEROY Christophea7b9f672015-01-19 17:04:38 +0100282 unsigned long set = pte_val(entry) &
Benjamin Herrenschmidtea3cc332009-08-18 19:00:34 +0000283 (_PAGE_DIRTY | _PAGE_ACCESSED | _PAGE_RW | _PAGE_EXEC);
LEROY Christophea7b9f672015-01-19 17:04:38 +0100284 unsigned long clr = ~pte_val(entry) & _PAGE_RO;
285
286 pte_update(ptep, clr, set);
David Gibsonf88df142007-04-30 16:30:56 +1000287}
288
David Gibsonf88df142007-04-30 16:30:56 +1000289#define __HAVE_ARCH_PTE_SAME
290#define pte_same(A,B) (((pte_val(A) ^ pte_val(B)) & ~_PAGE_HASHPTE) == 0)
291
292/*
293 * Note that on Book E processors, the pmd contains the kernel virtual
294 * (lowmem) address of the pte page. The physical address is less useful
295 * because everything runs with translation enabled (even the TLB miss
296 * handler). On everything else the pmd contains the physical address
297 * of the pte page. -- paulus
298 */
299#ifndef CONFIG_BOOKE
300#define pmd_page_vaddr(pmd) \
301 ((unsigned long) __va(pmd_val(pmd) & PAGE_MASK))
302#define pmd_page(pmd) \
Jason Gunthorpe43b5fef2010-03-09 09:35:00 +0000303 pfn_to_page(pmd_val(pmd) >> PAGE_SHIFT)
David Gibsonf88df142007-04-30 16:30:56 +1000304#else
305#define pmd_page_vaddr(pmd) \
306 ((unsigned long) (pmd_val(pmd) & PAGE_MASK))
307#define pmd_page(pmd) \
Kumar Galaaf892e02008-04-16 05:52:30 +1000308 pfn_to_page((__pa(pmd_val(pmd)) >> PAGE_SHIFT))
David Gibsonf88df142007-04-30 16:30:56 +1000309#endif
310
311/* to find an entry in a kernel page-table-directory */
312#define pgd_offset_k(address) pgd_offset(&init_mm, address)
313
314/* to find an entry in a page-table-directory */
315#define pgd_index(address) ((address) >> PGDIR_SHIFT)
316#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
317
David Gibsonf88df142007-04-30 16:30:56 +1000318/* Find an entry in the third-level page table.. */
319#define pte_index(address) \
320 (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))
321#define pte_offset_kernel(dir, addr) \
Christophe Leroybe00ed72016-02-09 17:07:56 +0100322 (pmd_bad(*(dir)) ? NULL : (pte_t *)pmd_page_vaddr(*(dir)) + \
323 pte_index(addr))
David Gibsonf88df142007-04-30 16:30:56 +1000324#define pte_offset_map(dir, addr) \
Peter Zijlstraece0e2b2010-10-26 14:21:52 -0700325 ((pte_t *) kmap_atomic(pmd_page(*(dir))) + pte_index(addr))
326#define pte_unmap(pte) kunmap_atomic(pte)
David Gibsonf88df142007-04-30 16:30:56 +1000327
David Gibsonf88df142007-04-30 16:30:56 +1000328/*
329 * Encode and decode a swap entry.
330 * Note that the bits we use in a PTE for representing a swap entry
Kirill A. Shutemov780fc562015-02-16 16:00:18 -0800331 * must not include the _PAGE_PRESENT bit or the _PAGE_HASHPTE bit (if used).
332 * -- paulus
David Gibsonf88df142007-04-30 16:30:56 +1000333 */
334#define __swp_type(entry) ((entry).val & 0x1f)
335#define __swp_offset(entry) ((entry).val >> 5)
336#define __swp_entry(type, offset) ((swp_entry_t) { (type) | ((offset) << 5) })
337#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 })
338#define __swp_entry_to_pte(x) ((pte_t) { (x).val << 3 })
339
David Gibsonf88df142007-04-30 16:30:56 +1000340extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep,
341 pmd_t **pmdp);
342
343#endif /* !__ASSEMBLY__ */
344
Aneesh Kumar K.V17ed9e32015-12-01 09:06:38 +0530345#endif /* __ASM_POWERPC_NOHASH_32_PGTABLE_H */