blob: d03b60d53f99e331021b7504761be673a5700970 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999, 2000
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Hartmut Penner (hp@de.ibm.com)
5 * Ulrich Weigand (weigand@de.ibm.com)
6 * Martin Schwidefsky (schwidefsky@de.ibm.com)
7 *
8 * Derived from "include/asm-i386/pgtable.h"
9 */
10
11#ifndef _ASM_S390_PGTABLE_H
12#define _ASM_S390_PGTABLE_H
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
Martin Schwidefskya1c843b2015-04-22 13:55:59 +020015 * The Linux memory management assumes a three-level page table setup.
16 * For s390 64 bit we use up to four of the five levels the hardware
17 * provides (region first tables are not used).
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
19 * The "pgd_xxx()" functions are trivial for a folded two-level
20 * setup: the pgd is never bad, and a pmd always exists (as it's folded
21 * into the pgd entry)
22 *
23 * This file contains the functions and defines necessary to modify and use
24 * the S390 page table tree.
25 */
26#ifndef __ASSEMBLY__
Heiko Carstens9789db02008-07-14 09:59:11 +020027#include <linux/sched.h>
Heiko Carstens2dcea572006-09-29 01:58:41 -070028#include <linux/mm_types.h>
Martin Schwidefskyabf09be2012-11-07 13:17:37 +010029#include <linux/page-flags.h>
Martin Schwidefsky527e30b2014-04-30 16:04:25 +020030#include <linux/radix-tree.h>
Heiko Carstens37cd9442016-05-20 08:08:14 +020031#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <asm/bug.h>
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +020033#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Heiko Carstens0ccb32c2016-05-28 10:03:55 +020035extern pgd_t swapper_pg_dir[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070036extern void paging_init(void);
Heiko Carstens2b67fc42007-02-05 21:16:47 +010037extern void vmem_map_init(void);
Heiko Carstense8a97e42016-05-17 10:50:15 +020038pmd_t *vmem_pmd_alloc(void);
39pte_t *vmem_pte_alloc(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Heiko Carstens37cd9442016-05-20 08:08:14 +020041enum {
42 PG_DIRECT_MAP_4K = 0,
43 PG_DIRECT_MAP_1M,
44 PG_DIRECT_MAP_2G,
45 PG_DIRECT_MAP_MAX
46};
47
48extern atomic_long_t direct_pages_count[PG_DIRECT_MAP_MAX];
49
50static inline void update_page_count(int level, long count)
51{
52 if (IS_ENABLED(CONFIG_PROC_FS))
53 atomic_long_add(count, &direct_pages_count[level]);
54}
55
56struct seq_file;
57void arch_report_meminfo(struct seq_file *m);
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * The S390 doesn't have any external MMU info: the kernel page
61 * tables contain all the necessary information.
62 */
Russell King4b3073e2009-12-18 16:40:18 +000063#define update_mmu_cache(vma, address, ptep) do { } while (0)
David Millerb113da62012-10-08 16:34:25 -070064#define update_mmu_cache_pmd(vma, address, ptep) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/*
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020067 * ZERO_PAGE is a global shared page that is always zero; used
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * for zero-mapped memory areas etc..
69 */
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020070
71extern unsigned long empty_zero_page;
72extern unsigned long zero_page_mask;
73
74#define ZERO_PAGE(vaddr) \
75 (virt_to_page((void *)(empty_zero_page + \
76 (((unsigned long)(vaddr)) &zero_page_mask))))
Kirill A. Shutemov816422a2012-12-12 13:52:36 -080077#define __HAVE_COLOR_ZERO_PAGE
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020078
Linus Torvalds4f2e2902013-04-17 08:46:19 -070079/* TODO: s390 cannot support io_remap_pfn_range... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080#endif /* !__ASSEMBLY__ */
81
82/*
83 * PMD_SHIFT determines the size of the area a second-level page
84 * table can map
85 * PGDIR_SHIFT determines what a third-level page table entry can map
86 */
Heiko Carstens5a79859a2015-02-12 13:08:27 +010087#define PMD_SHIFT 20
88#define PUD_SHIFT 31
89#define PGDIR_SHIFT 42
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91#define PMD_SIZE (1UL << PMD_SHIFT)
92#define PMD_MASK (~(PMD_SIZE-1))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020093#define PUD_SIZE (1UL << PUD_SHIFT)
94#define PUD_MASK (~(PUD_SIZE-1))
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010095#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
96#define PGDIR_MASK (~(PGDIR_SIZE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98/*
99 * entries per page directory level: the S390 is two-level, so
100 * we don't really have any PMD directory physically.
101 * for S390 segment-table entries are combined to one PGD
102 * that leads to 1024 pte per pgd
103 */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100104#define PTRS_PER_PTE 256
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100105#define PTRS_PER_PMD 2048
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100106#define PTRS_PER_PUD 2048
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100107#define PTRS_PER_PGD 2048
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Kirill A. Shutemovd016bf72015-02-11 15:26:41 -0800109#define FIRST_USER_ADDRESS 0UL
Hugh Dickinsd455a362005-04-19 13:29:23 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#define pte_ERROR(e) \
112 printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e))
113#define pmd_ERROR(e) \
114 printk("%s:%d: bad pmd %p.\n", __FILE__, __LINE__, (void *) pmd_val(e))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200115#define pud_ERROR(e) \
116 printk("%s:%d: bad pud %p.\n", __FILE__, __LINE__, (void *) pud_val(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#define pgd_ERROR(e) \
118 printk("%s:%d: bad pgd %p.\n", __FILE__, __LINE__, (void *) pgd_val(e))
119
120#ifndef __ASSEMBLY__
121/*
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200122 * The vmalloc and module area will always be on the topmost area of the
123 * kernel mapping. We reserve 128GB (64bit) for vmalloc and modules.
Heiko Carstensc972cc62012-10-05 16:52:18 +0200124 * On 64 bit kernels we have a 2GB area at the top of the vmalloc area where
125 * modules will reside. That makes sure that inter module branches always
126 * happen without trampolines and in addition the placement within a 2GB frame
127 * is branch prediction unit friendly.
Heiko Carstens8b62bc92006-12-04 15:40:56 +0100128 */
Heiko Carstens239a64252009-06-12 10:26:33 +0200129extern unsigned long VMALLOC_START;
Martin Schwidefsky14045eb2011-12-27 11:27:07 +0100130extern unsigned long VMALLOC_END;
131extern struct page *vmemmap;
Heiko Carstens239a64252009-06-12 10:26:33 +0200132
Martin Schwidefsky14045eb2011-12-27 11:27:07 +0100133#define VMEM_MAX_PHYS ((unsigned long) vmemmap)
Christian Borntraeger5fd9c6e2008-01-26 14:11:00 +0100134
Heiko Carstensc972cc62012-10-05 16:52:18 +0200135extern unsigned long MODULES_VADDR;
136extern unsigned long MODULES_END;
137#define MODULES_VADDR MODULES_VADDR
138#define MODULES_END MODULES_END
139#define MODULES_LEN (1UL << 31)
Heiko Carstensc972cc62012-10-05 16:52:18 +0200140
Heiko Carstensc9331462014-10-15 12:17:38 +0200141static inline int is_module_addr(void *addr)
142{
Heiko Carstensc9331462014-10-15 12:17:38 +0200143 BUILD_BUG_ON(MODULES_LEN > (1UL << 31));
144 if (addr < (void *)MODULES_VADDR)
145 return 0;
146 if (addr > (void *)MODULES_END)
147 return 0;
Heiko Carstensc9331462014-10-15 12:17:38 +0200148 return 1;
149}
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * A 64 bit pagetable entry of S390 has following format:
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100153 * | PFRA |0IPC| OS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * 0000000000111111111122222222223333333333444444444455555555556666
155 * 0123456789012345678901234567890123456789012345678901234567890123
156 *
157 * I Page-Invalid Bit: Page is not available for address-translation
158 * P Page-Protection Bit: Store access not possible for page
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100159 * C Change-bit override: HW is not required to set change bit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
161 * A 64 bit segmenttable entry of S390 has following format:
162 * | P-table origin | TT
163 * 0000000000111111111122222222223333333333444444444455555555556666
164 * 0123456789012345678901234567890123456789012345678901234567890123
165 *
166 * I Segment-Invalid Bit: Segment is not available for address-translation
167 * C Common-Segment Bit: Segment is not private (PoP 3-30)
168 * P Page-Protection Bit: Store access not possible for page
169 * TT Type 00
170 *
171 * A 64 bit region table entry of S390 has following format:
172 * | S-table origin | TF TTTL
173 * 0000000000111111111122222222223333333333444444444455555555556666
174 * 0123456789012345678901234567890123456789012345678901234567890123
175 *
176 * I Segment-Invalid Bit: Segment is not available for address-translation
177 * TT Type 01
178 * TF
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200179 * TL Table length
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *
181 * The 64 bit regiontable origin of S390 has following format:
182 * | region table origon | DTTL
183 * 0000000000111111111122222222223333333333444444444455555555556666
184 * 0123456789012345678901234567890123456789012345678901234567890123
185 *
186 * X Space-Switch event:
187 * G Segment-Invalid Bit:
188 * P Private-Space Bit:
189 * S Storage-Alteration:
190 * R Real space
191 * TL Table-Length:
192 *
193 * A storage key has the following format:
194 * | ACC |F|R|C|0|
195 * 0 3 4 5 6 7
196 * ACC: access key
197 * F : fetch protection bit
198 * R : referenced bit
199 * C : changed bit
200 */
201
202/* Hardware bits in the page table entry */
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100203#define _PAGE_NOEXEC 0x100 /* HW no-execute bit */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200204#define _PAGE_PROTECT 0x200 /* HW read-only bit */
Martin Schwidefsky83377482006-10-18 18:30:51 +0200205#define _PAGE_INVALID 0x400 /* HW invalid bit */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200206#define _PAGE_LARGE 0x800 /* Bit to mark a large pte */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200207
208/* Software bits in the page table entry */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200209#define _PAGE_PRESENT 0x001 /* SW pte present bit */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200210#define _PAGE_YOUNG 0x004 /* SW pte young bit */
211#define _PAGE_DIRTY 0x008 /* SW pte dirty bit */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200212#define _PAGE_READ 0x010 /* SW pte read bit */
213#define _PAGE_WRITE 0x020 /* SW pte write bit */
214#define _PAGE_SPECIAL 0x040 /* SW associated with special page */
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200215#define _PAGE_UNUSED 0x080 /* SW bit for pgste usage state */
Nick Piggina08cb622008-04-28 02:13:03 -0700216#define __HAVE_ARCH_PTE_SPECIAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Martin Schwidefsky5614dd92015-04-22 14:47:42 +0200218#ifdef CONFIG_MEM_SOFT_DIRTY
219#define _PAGE_SOFT_DIRTY 0x002 /* SW pte soft dirty bit */
220#else
221#define _PAGE_SOFT_DIRTY 0x000
222#endif
223
Nick Piggin138c9022008-07-08 11:31:06 +0200224/* Set of bits not changed in pte_modify */
Heiko Carstens6a5c1482014-09-22 08:50:51 +0200225#define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_SPECIAL | _PAGE_DIRTY | \
Martin Schwidefsky5614dd92015-04-22 14:47:42 +0200226 _PAGE_YOUNG | _PAGE_SOFT_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Martin Schwidefsky83377482006-10-18 18:30:51 +0200228/*
Kirill A. Shutemov6e76d4b2015-02-10 14:11:04 -0800229 * handle_pte_fault uses pte_present and pte_none to find out the pte type
230 * WITHOUT holding the page table lock. The _PAGE_PRESENT bit is used to
231 * distinguish present from not-present ptes. It is changed only with the page
232 * table lock held.
Martin Schwidefsky83377482006-10-18 18:30:51 +0200233 *
Martin Schwidefskye5098612013-07-23 20:57:57 +0200234 * The following table gives the different possible bit combinations for
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200235 * the pte hardware and software bits in the last 12 bits of a pte
236 * (. unassigned bit, x don't care, t swap type):
Martin Schwidefsky83377482006-10-18 18:30:51 +0200237 *
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200238 * 842100000000
239 * 000084210000
240 * 000000008421
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200241 * .IR.uswrdy.p
242 * empty .10.00000000
243 * swap .11..ttttt.0
244 * prot-none, clean, old .11.xx0000.1
245 * prot-none, clean, young .11.xx0001.1
Gerald Schaeferbc29b7a2016-07-18 14:35:13 +0200246 * prot-none, dirty, old .11.xx0010.1
247 * prot-none, dirty, young .11.xx0011.1
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200248 * read-only, clean, old .11.xx0100.1
249 * read-only, clean, young .01.xx0101.1
250 * read-only, dirty, old .11.xx0110.1
251 * read-only, dirty, young .01.xx0111.1
252 * read-write, clean, old .11.xx1100.1
253 * read-write, clean, young .01.xx1101.1
254 * read-write, dirty, old .10.xx1110.1
255 * read-write, dirty, young .00.xx1111.1
256 * HW-bits: R read-only, I invalid
257 * SW-bits: p present, y young, d dirty, r read, w write, s special,
258 * u unused, l large
Martin Schwidefskye5098612013-07-23 20:57:57 +0200259 *
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200260 * pte_none is true for the bit pattern .10.00000000, pte == 0x400
261 * pte_swap is true for the bit pattern .11..ooooo.0, (pte & 0x201) == 0x200
262 * pte_present is true for the bit pattern .xx.xxxxxx.1, (pte & 0x001) == 0x001
Martin Schwidefsky83377482006-10-18 18:30:51 +0200263 */
264
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200265/* Bits in the segment/region table address-space-control-element */
266#define _ASCE_ORIGIN ~0xfffUL/* segment table origin */
267#define _ASCE_PRIVATE_SPACE 0x100 /* private space control */
268#define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */
269#define _ASCE_SPACE_SWITCH 0x40 /* space switch event */
270#define _ASCE_REAL_SPACE 0x20 /* real space control */
271#define _ASCE_TYPE_MASK 0x0c /* asce table type mask */
272#define _ASCE_TYPE_REGION1 0x0c /* region first table type */
273#define _ASCE_TYPE_REGION2 0x08 /* region second table type */
274#define _ASCE_TYPE_REGION3 0x04 /* region third table type */
275#define _ASCE_TYPE_SEGMENT 0x00 /* segment table type */
276#define _ASCE_TABLE_LENGTH 0x03 /* region table length */
277
278/* Bits in the region table entry */
279#define _REGION_ENTRY_ORIGIN ~0xfffUL/* region/segment table origin */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200280#define _REGION_ENTRY_PROTECT 0x200 /* region protection bit */
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100281#define _REGION_ENTRY_NOEXEC 0x100 /* region no-execute bit */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100282#define _REGION_ENTRY_OFFSET 0xc0 /* region table offset */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200283#define _REGION_ENTRY_INVALID 0x20 /* invalid region table entry */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200284#define _REGION_ENTRY_TYPE_MASK 0x0c /* region/segment table type mask */
285#define _REGION_ENTRY_TYPE_R1 0x0c /* region first table type */
286#define _REGION_ENTRY_TYPE_R2 0x08 /* region second table type */
287#define _REGION_ENTRY_TYPE_R3 0x04 /* region third table type */
288#define _REGION_ENTRY_LENGTH 0x03 /* region third length */
289
290#define _REGION1_ENTRY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_LENGTH)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200291#define _REGION1_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200292#define _REGION2_ENTRY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_LENGTH)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200293#define _REGION2_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200294#define _REGION3_ENTRY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_LENGTH)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200295#define _REGION3_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200296
Heiko Carstens9e20b4d2016-05-10 10:34:47 +0200297#define _REGION3_ENTRY_ORIGIN_LARGE ~0x7fffffffUL /* large page address */
298#define _REGION3_ENTRY_ORIGIN ~0x7ffUL/* region third table origin */
299
Heiko Carstens2dffdcb2016-05-11 10:52:07 +0200300#define _REGION3_ENTRY_DIRTY 0x2000 /* SW region dirty bit */
301#define _REGION3_ENTRY_YOUNG 0x1000 /* SW region young bit */
302#define _REGION3_ENTRY_LARGE 0x0400 /* RTTE-format control, large page */
303#define _REGION3_ENTRY_READ 0x0002 /* SW region read bit */
304#define _REGION3_ENTRY_WRITE 0x0001 /* SW region write bit */
305
306#ifdef CONFIG_MEM_SOFT_DIRTY
307#define _REGION3_ENTRY_SOFT_DIRTY 0x4000 /* SW region soft dirty bit */
308#else
309#define _REGION3_ENTRY_SOFT_DIRTY 0x0000 /* SW region soft dirty bit */
310#endif
311
Gerald Schaeferd08de8e2016-07-04 14:47:01 +0200312#define _REGION_ENTRY_BITS 0xfffffffffffff227UL
313#define _REGION_ENTRY_BITS_LARGE 0xffffffff8000fe27UL
314
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200315/* Bits in the segment table entry */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200316#define _SEGMENT_ENTRY_BITS 0xfffffffffffffe33UL
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200317#define _SEGMENT_ENTRY_BITS_LARGE 0xfffffffffff0ff33UL
Heiko Carstensea815312013-03-21 12:50:39 +0100318#define _SEGMENT_ENTRY_ORIGIN_LARGE ~0xfffffUL /* large page address */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200319#define _SEGMENT_ENTRY_ORIGIN ~0x7ffUL/* segment table origin */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200320#define _SEGMENT_ENTRY_PROTECT 0x200 /* page protection bit */
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100321#define _SEGMENT_ENTRY_NOEXEC 0x100 /* region no-execute bit */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200322#define _SEGMENT_ENTRY_INVALID 0x20 /* invalid segment table entry */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200323
324#define _SEGMENT_ENTRY (0)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200325#define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200326
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200327#define _SEGMENT_ENTRY_DIRTY 0x2000 /* SW segment dirty bit */
328#define _SEGMENT_ENTRY_YOUNG 0x1000 /* SW segment young bit */
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200329#define _SEGMENT_ENTRY_LARGE 0x0400 /* STE-format control, large page */
Gerald Schaeferbc29b7a2016-07-18 14:35:13 +0200330#define _SEGMENT_ENTRY_WRITE 0x0002 /* SW segment write bit */
331#define _SEGMENT_ENTRY_READ 0x0001 /* SW segment read bit */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200332
Martin Schwidefsky5614dd92015-04-22 14:47:42 +0200333#ifdef CONFIG_MEM_SOFT_DIRTY
334#define _SEGMENT_ENTRY_SOFT_DIRTY 0x4000 /* SW segment soft dirty bit */
335#else
336#define _SEGMENT_ENTRY_SOFT_DIRTY 0x0000 /* SW segment soft dirty bit */
337#endif
338
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200339/*
Heiko Carstens2dffdcb2016-05-11 10:52:07 +0200340 * Segment table and region3 table entry encoding
341 * (R = read-only, I = invalid, y = young bit):
Gerald Schaeferbc29b7a2016-07-18 14:35:13 +0200342 * dy..R...I...wr
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200343 * prot-none, clean, old 00..1...1...00
344 * prot-none, clean, young 01..1...1...00
345 * prot-none, dirty, old 10..1...1...00
346 * prot-none, dirty, young 11..1...1...00
Gerald Schaeferbc29b7a2016-07-18 14:35:13 +0200347 * read-only, clean, old 00..1...1...01
348 * read-only, clean, young 01..1...0...01
349 * read-only, dirty, old 10..1...1...01
350 * read-only, dirty, young 11..1...0...01
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200351 * read-write, clean, old 00..1...1...11
352 * read-write, clean, young 01..1...0...11
353 * read-write, dirty, old 10..0...1...11
354 * read-write, dirty, young 11..0...0...11
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200355 * The segment table origin is used to distinguish empty (origin==0) from
356 * read-write, old segment table entries (origin!=0)
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200357 * HW-bits: R read-only, I invalid
358 * SW-bits: y young, d dirty, r read, w write
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200359 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200360
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200361/* Page status table bits for virtualization */
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200362#define PGSTE_ACC_BITS 0xf000000000000000UL
363#define PGSTE_FP_BIT 0x0800000000000000UL
364#define PGSTE_PCL_BIT 0x0080000000000000UL
365#define PGSTE_HR_BIT 0x0040000000000000UL
366#define PGSTE_HC_BIT 0x0020000000000000UL
367#define PGSTE_GR_BIT 0x0004000000000000UL
368#define PGSTE_GC_BIT 0x0002000000000000UL
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200369#define PGSTE_UC_BIT 0x0000800000000000UL /* user dirty (migration) */
370#define PGSTE_IN_BIT 0x0000400000000000UL /* IPTE notify bit */
Martin Schwidefsky4be130a2016-03-08 12:12:18 +0100371#define PGSTE_VSIE_BIT 0x0000200000000000UL /* ref'd in a shadow table */
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200372
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200373/* Guest Page State used for virtualization */
374#define _PGSTE_GPS_ZERO 0x0000000080000000UL
375#define _PGSTE_GPS_USAGE_MASK 0x0000000003000000UL
376#define _PGSTE_GPS_USAGE_STABLE 0x0000000000000000UL
377#define _PGSTE_GPS_USAGE_UNUSED 0x0000000001000000UL
378
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200379/*
380 * A user page table pointer has the space-switch-event bit, the
381 * private-space-control bit and the storage-alteration-event-control
382 * bit set. A kernel page table pointer doesn't need them.
383 */
384#define _ASCE_USER_BITS (_ASCE_SPACE_SWITCH | _ASCE_PRIVATE_SPACE | \
385 _ASCE_ALT_EVENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200388 * Page protection definitions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
Gerald Schaeferbc29b7a2016-07-18 14:35:13 +0200390#define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_INVALID | _PAGE_PROTECT)
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100391#define PAGE_RO __pgprot(_PAGE_PRESENT | _PAGE_READ | \
392 _PAGE_NOEXEC | _PAGE_INVALID | _PAGE_PROTECT)
393#define PAGE_RX __pgprot(_PAGE_PRESENT | _PAGE_READ | \
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200394 _PAGE_INVALID | _PAGE_PROTECT)
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100395#define PAGE_RW __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
396 _PAGE_NOEXEC | _PAGE_INVALID | _PAGE_PROTECT)
397#define PAGE_RWX __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200398 _PAGE_INVALID | _PAGE_PROTECT)
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200399
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200400#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100401 _PAGE_YOUNG | _PAGE_DIRTY | _PAGE_NOEXEC)
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200402#define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100403 _PAGE_YOUNG | _PAGE_DIRTY | _PAGE_NOEXEC)
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200404#define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_YOUNG | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100405 _PAGE_PROTECT | _PAGE_NOEXEC)
406#define PAGE_KERNEL_EXEC __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
407 _PAGE_YOUNG | _PAGE_DIRTY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409/*
Martin Schwidefsky043d0702011-05-23 10:24:23 +0200410 * On s390 the page table entry has an invalid bit and a read-only bit.
411 * Read permission implies execute permission and write permission
412 * implies read permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
414 /*xwr*/
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200415#define __P000 PAGE_NONE
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100416#define __P001 PAGE_RO
417#define __P010 PAGE_RO
418#define __P011 PAGE_RO
419#define __P100 PAGE_RX
420#define __P101 PAGE_RX
421#define __P110 PAGE_RX
422#define __P111 PAGE_RX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200424#define __S000 PAGE_NONE
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100425#define __S001 PAGE_RO
426#define __S010 PAGE_RW
427#define __S011 PAGE_RW
428#define __S100 PAGE_RX
429#define __S101 PAGE_RX
430#define __S110 PAGE_RWX
431#define __S111 PAGE_RWX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Gerald Schaefer106c9922013-04-29 15:07:23 -0700433/*
434 * Segment entry (large page) protection definitions.
435 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200436#define SEGMENT_NONE __pgprot(_SEGMENT_ENTRY_INVALID | \
437 _SEGMENT_ENTRY_PROTECT)
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100438#define SEGMENT_RO __pgprot(_SEGMENT_ENTRY_PROTECT | \
439 _SEGMENT_ENTRY_READ | \
440 _SEGMENT_ENTRY_NOEXEC)
441#define SEGMENT_RX __pgprot(_SEGMENT_ENTRY_PROTECT | \
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200442 _SEGMENT_ENTRY_READ)
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100443#define SEGMENT_RW __pgprot(_SEGMENT_ENTRY_READ | \
444 _SEGMENT_ENTRY_WRITE | \
445 _SEGMENT_ENTRY_NOEXEC)
446#define SEGMENT_RWX __pgprot(_SEGMENT_ENTRY_READ | \
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200447 _SEGMENT_ENTRY_WRITE)
Heiko Carstens2dffdcb2016-05-11 10:52:07 +0200448#define SEGMENT_KERNEL __pgprot(_SEGMENT_ENTRY | \
449 _SEGMENT_ENTRY_LARGE | \
450 _SEGMENT_ENTRY_READ | \
451 _SEGMENT_ENTRY_WRITE | \
452 _SEGMENT_ENTRY_YOUNG | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100453 _SEGMENT_ENTRY_DIRTY | \
454 _SEGMENT_ENTRY_NOEXEC)
Heiko Carstens2dffdcb2016-05-11 10:52:07 +0200455#define SEGMENT_KERNEL_RO __pgprot(_SEGMENT_ENTRY | \
456 _SEGMENT_ENTRY_LARGE | \
457 _SEGMENT_ENTRY_READ | \
458 _SEGMENT_ENTRY_YOUNG | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100459 _SEGMENT_ENTRY_PROTECT | \
460 _SEGMENT_ENTRY_NOEXEC)
Heiko Carstens2dffdcb2016-05-11 10:52:07 +0200461
462/*
463 * Region3 entry (large page) protection definitions.
464 */
465
466#define REGION3_KERNEL __pgprot(_REGION_ENTRY_TYPE_R3 | \
467 _REGION3_ENTRY_LARGE | \
468 _REGION3_ENTRY_READ | \
469 _REGION3_ENTRY_WRITE | \
470 _REGION3_ENTRY_YOUNG | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100471 _REGION3_ENTRY_DIRTY | \
472 _REGION_ENTRY_NOEXEC)
Heiko Carstens2dffdcb2016-05-11 10:52:07 +0200473#define REGION3_KERNEL_RO __pgprot(_REGION_ENTRY_TYPE_R3 | \
474 _REGION3_ENTRY_LARGE | \
475 _REGION3_ENTRY_READ | \
476 _REGION3_ENTRY_YOUNG | \
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100477 _REGION_ENTRY_PROTECT | \
478 _REGION_ENTRY_NOEXEC)
Gerald Schaefer106c9922013-04-29 15:07:23 -0700479
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200480static inline int mm_has_pgste(struct mm_struct *mm)
481{
482#ifdef CONFIG_PGSTE
483 if (unlikely(mm->context.has_pgste))
484 return 1;
485#endif
486 return 0;
487}
Dominik Dingel65eef3352014-01-14 15:02:11 +0100488
Martin Schwidefsky0b46e0a2015-04-15 13:23:26 +0200489static inline int mm_alloc_pgste(struct mm_struct *mm)
490{
491#ifdef CONFIG_PGSTE
492 if (unlikely(mm->context.alloc_pgste))
493 return 1;
494#endif
495 return 0;
496}
497
Dominik Dingel2faee8f2014-10-23 12:08:38 +0200498/*
499 * In the case that a guest uses storage keys
500 * faults should no longer be backed by zero pages
501 */
502#define mm_forbids_zeropage mm_use_skey
Dominik Dingel65eef3352014-01-14 15:02:11 +0100503static inline int mm_use_skey(struct mm_struct *mm)
504{
505#ifdef CONFIG_PGSTE
506 if (mm->context.use_skey)
507 return 1;
508#endif
509 return 0;
510}
511
Heiko Carstens4ccccc52016-05-14 10:46:33 +0200512static inline void csp(unsigned int *ptr, unsigned int old, unsigned int new)
513{
514 register unsigned long reg2 asm("2") = old;
515 register unsigned long reg3 asm("3") = new;
516 unsigned long address = (unsigned long)ptr | 1;
517
518 asm volatile(
519 " csp %0,%3"
520 : "+d" (reg2), "+m" (*ptr)
521 : "d" (reg3), "d" (address)
522 : "cc");
523}
524
Heiko Carstense8a97e42016-05-17 10:50:15 +0200525static inline void cspg(unsigned long *ptr, unsigned long old, unsigned long new)
526{
527 register unsigned long reg2 asm("2") = old;
528 register unsigned long reg3 asm("3") = new;
529 unsigned long address = (unsigned long)ptr | 1;
530
531 asm volatile(
532 " .insn rre,0xb98a0000,%0,%3"
533 : "+d" (reg2), "+m" (*ptr)
534 : "d" (reg3), "d" (address)
535 : "cc");
536}
537
538#define CRDTE_DTT_PAGE 0x00UL
539#define CRDTE_DTT_SEGMENT 0x10UL
540#define CRDTE_DTT_REGION3 0x14UL
541#define CRDTE_DTT_REGION2 0x18UL
542#define CRDTE_DTT_REGION1 0x1cUL
543
544static inline void crdte(unsigned long old, unsigned long new,
545 unsigned long table, unsigned long dtt,
546 unsigned long address, unsigned long asce)
547{
548 register unsigned long reg2 asm("2") = old;
549 register unsigned long reg3 asm("3") = new;
550 register unsigned long reg4 asm("4") = table | dtt;
551 register unsigned long reg5 asm("5") = address;
552
553 asm volatile(".insn rrf,0xb98f0000,%0,%2,%4,0"
554 : "+d" (reg2)
555 : "d" (reg3), "d" (reg4), "d" (reg5), "a" (asce)
556 : "memory", "cc");
557}
558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559/*
560 * pgd/pmd/pte query functions
561 */
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100562static inline int pgd_present(pgd_t pgd)
563{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100564 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2)
565 return 1;
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100566 return (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) != 0UL;
567}
568
569static inline int pgd_none(pgd_t pgd)
570{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100571 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2)
572 return 0;
Martin Schwidefskye5098612013-07-23 20:57:57 +0200573 return (pgd_val(pgd) & _REGION_ENTRY_INVALID) != 0UL;
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100574}
575
576static inline int pgd_bad(pgd_t pgd)
577{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100578 /*
579 * With dynamic page table levels the pgd can be a region table
580 * entry or a segment table entry. Check for the bit that are
581 * invalid for either table entry.
582 */
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100583 unsigned long mask =
Martin Schwidefskye5098612013-07-23 20:57:57 +0200584 ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID &
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100585 ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH;
586 return (pgd_val(pgd) & mask) != 0;
587}
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200588
589static inline int pud_present(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100591 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
592 return 1;
Martin Schwidefsky0d017922007-12-17 16:25:48 +0100593 return (pud_val(pud) & _REGION_ENTRY_ORIGIN) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
595
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200596static inline int pud_none(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100598 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
599 return 0;
Gerald Schaeferd08de8e2016-07-04 14:47:01 +0200600 return pud_val(pud) == _REGION3_ENTRY_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601}
602
Heiko Carstens18da2362012-10-08 09:18:26 +0200603static inline int pud_large(pud_t pud)
604{
605 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) != _REGION_ENTRY_TYPE_R3)
606 return 0;
607 return !!(pud_val(pud) & _REGION3_ENTRY_LARGE);
608}
609
Heiko Carstens9e20b4d2016-05-10 10:34:47 +0200610static inline unsigned long pud_pfn(pud_t pud)
611{
612 unsigned long origin_mask;
613
614 origin_mask = _REGION3_ENTRY_ORIGIN;
615 if (pud_large(pud))
616 origin_mask = _REGION3_ENTRY_ORIGIN_LARGE;
617 return (pud_val(pud) & origin_mask) >> PAGE_SHIFT;
618}
619
Gerald Schaeferd08de8e2016-07-04 14:47:01 +0200620static inline int pmd_large(pmd_t pmd)
621{
622 return (pmd_val(pmd) & _SEGMENT_ENTRY_LARGE) != 0;
623}
624
625static inline int pmd_bad(pmd_t pmd)
626{
627 if (pmd_large(pmd))
628 return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS_LARGE) != 0;
629 return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS) != 0;
630}
631
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200632static inline int pud_bad(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Gerald Schaeferd08de8e2016-07-04 14:47:01 +0200634 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
635 return pmd_bad(__pmd(pud_val(pud)));
636 if (pud_large(pud))
637 return (pud_val(pud) & ~_REGION_ENTRY_BITS_LARGE) != 0;
638 return (pud_val(pud) & ~_REGION_ENTRY_BITS) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639}
640
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800641static inline int pmd_present(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200643 return pmd_val(pmd) != _SEGMENT_ENTRY_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800646static inline int pmd_none(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200648 return pmd_val(pmd) == _SEGMENT_ENTRY_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649}
650
Martin Schwidefsky7cded342015-05-13 14:33:22 +0200651static inline unsigned long pmd_pfn(pmd_t pmd)
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200652{
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200653 unsigned long origin_mask;
654
655 origin_mask = _SEGMENT_ENTRY_ORIGIN;
656 if (pmd_large(pmd))
657 origin_mask = _SEGMENT_ENTRY_ORIGIN_LARGE;
658 return (pmd_val(pmd) & origin_mask) >> PAGE_SHIFT;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200659}
660
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700661#define __HAVE_ARCH_PMD_WRITE
662static inline int pmd_write(pmd_t pmd)
663{
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200664 return (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE) != 0;
665}
666
667static inline int pmd_dirty(pmd_t pmd)
668{
669 int dirty = 1;
670 if (pmd_large(pmd))
671 dirty = (pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY) != 0;
672 return dirty;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700673}
674
675static inline int pmd_young(pmd_t pmd)
676{
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200677 int young = 1;
678 if (pmd_large(pmd))
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200679 young = (pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG) != 0;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200680 return young;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700681}
682
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800683static inline int pte_present(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200685 /* Bit pattern: (pte & 0x001) == 0x001 */
686 return (pte_val(pte) & _PAGE_PRESENT) != 0;
687}
688
689static inline int pte_none(pte_t pte)
690{
691 /* Bit pattern: pte == 0x400 */
692 return pte_val(pte) == _PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200695static inline int pte_swap(pte_t pte)
696{
Martin Schwidefskya1c843b2015-04-22 13:55:59 +0200697 /* Bit pattern: (pte & 0x201) == 0x200 */
698 return (pte_val(pte) & (_PAGE_PROTECT | _PAGE_PRESENT))
699 == _PAGE_PROTECT;
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200700}
701
Nick Piggin7e675132008-04-28 02:13:00 -0700702static inline int pte_special(pte_t pte)
703{
Nick Piggina08cb622008-04-28 02:13:03 -0700704 return (pte_val(pte) & _PAGE_SPECIAL);
Nick Piggin7e675132008-04-28 02:13:00 -0700705}
706
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200707#define __HAVE_ARCH_PTE_SAME
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200708static inline int pte_same(pte_t a, pte_t b)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100709{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200710 return pte_val(a) == pte_val(b);
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100711}
712
Martin Schwidefskyb54565b2014-09-23 14:01:34 +0200713#ifdef CONFIG_NUMA_BALANCING
714static inline int pte_protnone(pte_t pte)
715{
716 return pte_present(pte) && !(pte_val(pte) & _PAGE_READ);
717}
718
719static inline int pmd_protnone(pmd_t pmd)
720{
721 /* pmd_large(pmd) implies pmd_present(pmd) */
722 return pmd_large(pmd) && !(pmd_val(pmd) & _SEGMENT_ENTRY_READ);
723}
724#endif
725
Martin Schwidefsky5614dd92015-04-22 14:47:42 +0200726static inline int pte_soft_dirty(pte_t pte)
727{
728 return pte_val(pte) & _PAGE_SOFT_DIRTY;
729}
730#define pte_swp_soft_dirty pte_soft_dirty
731
732static inline pte_t pte_mksoft_dirty(pte_t pte)
733{
734 pte_val(pte) |= _PAGE_SOFT_DIRTY;
735 return pte;
736}
737#define pte_swp_mksoft_dirty pte_mksoft_dirty
738
739static inline pte_t pte_clear_soft_dirty(pte_t pte)
740{
741 pte_val(pte) &= ~_PAGE_SOFT_DIRTY;
742 return pte;
743}
744#define pte_swp_clear_soft_dirty pte_clear_soft_dirty
745
746static inline int pmd_soft_dirty(pmd_t pmd)
747{
748 return pmd_val(pmd) & _SEGMENT_ENTRY_SOFT_DIRTY;
749}
750
751static inline pmd_t pmd_mksoft_dirty(pmd_t pmd)
752{
753 pmd_val(pmd) |= _SEGMENT_ENTRY_SOFT_DIRTY;
754 return pmd;
755}
756
757static inline pmd_t pmd_clear_soft_dirty(pmd_t pmd)
758{
759 pmd_val(pmd) &= ~_SEGMENT_ENTRY_SOFT_DIRTY;
760 return pmd;
761}
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763/*
764 * query functions pte_write/pte_dirty/pte_young only work if
765 * pte_present() is true. Undefined behaviour if not..
766 */
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800767static inline int pte_write(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200769 return (pte_val(pte) & _PAGE_WRITE) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800772static inline int pte_dirty(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200774 return (pte_val(pte) & _PAGE_DIRTY) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800777static inline int pte_young(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200779 return (pte_val(pte) & _PAGE_YOUNG) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200782#define __HAVE_ARCH_PTE_UNUSED
783static inline int pte_unused(pte_t pte)
784{
785 return pte_val(pte) & _PAGE_UNUSED;
786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/*
789 * pgd/pmd/pte modification functions
790 */
791
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200792static inline void pgd_clear(pgd_t *pgd)
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100793{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100794 if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
795 pgd_val(*pgd) = _REGION2_ENTRY_EMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100798static inline void pud_clear(pud_t *pud)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100799{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200800 if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
801 pud_val(*pud) = _REGION3_ENTRY_EMPTY;
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100802}
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100803
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200804static inline void pmd_clear(pmd_t *pmdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200806 pmd_val(*pmdp) = _SEGMENT_ENTRY_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800809static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200811 pte_val(*ptep) = _PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814/*
815 * The following pte modification functions only work if
816 * pte_present() is true. Undefined behaviour if not..
817 */
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800818static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Nick Piggin138c9022008-07-08 11:31:06 +0200820 pte_val(pte) &= _PAGE_CHG_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 pte_val(pte) |= pgprot_val(newprot);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200822 /*
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100823 * newprot for PAGE_NONE, PAGE_RO, PAGE_RX, PAGE_RW and PAGE_RWX
824 * has the invalid bit set, clear it again for readable, young pages
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200825 */
826 if ((pte_val(pte) & _PAGE_YOUNG) && (pte_val(pte) & _PAGE_READ))
827 pte_val(pte) &= ~_PAGE_INVALID;
828 /*
Martin Schwidefsky57d7f932016-03-22 10:54:24 +0100829 * newprot for PAGE_RO, PAGE_RX, PAGE_RW and PAGE_RWX has the page
830 * protection bit set, clear it again for writable, dirty pages
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200831 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200832 if ((pte_val(pte) & _PAGE_DIRTY) && (pte_val(pte) & _PAGE_WRITE))
833 pte_val(pte) &= ~_PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return pte;
835}
836
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800837static inline pte_t pte_wrprotect(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200839 pte_val(pte) &= ~_PAGE_WRITE;
840 pte_val(pte) |= _PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return pte;
842}
843
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800844static inline pte_t pte_mkwrite(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200846 pte_val(pte) |= _PAGE_WRITE;
847 if (pte_val(pte) & _PAGE_DIRTY)
848 pte_val(pte) &= ~_PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return pte;
850}
851
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800852static inline pte_t pte_mkclean(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200854 pte_val(pte) &= ~_PAGE_DIRTY;
855 pte_val(pte) |= _PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return pte;
857}
858
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800859static inline pte_t pte_mkdirty(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Martin Schwidefsky5614dd92015-04-22 14:47:42 +0200861 pte_val(pte) |= _PAGE_DIRTY | _PAGE_SOFT_DIRTY;
Martin Schwidefskye5098612013-07-23 20:57:57 +0200862 if (pte_val(pte) & _PAGE_WRITE)
863 pte_val(pte) &= ~_PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return pte;
865}
866
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800867static inline pte_t pte_mkold(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200869 pte_val(pte) &= ~_PAGE_YOUNG;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200870 pte_val(pte) |= _PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return pte;
872}
873
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800874static inline pte_t pte_mkyoung(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200876 pte_val(pte) |= _PAGE_YOUNG;
877 if (pte_val(pte) & _PAGE_READ)
878 pte_val(pte) &= ~_PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return pte;
880}
881
Nick Piggin7e675132008-04-28 02:13:00 -0700882static inline pte_t pte_mkspecial(pte_t pte)
883{
Nick Piggina08cb622008-04-28 02:13:03 -0700884 pte_val(pte) |= _PAGE_SPECIAL;
Nick Piggin7e675132008-04-28 02:13:00 -0700885 return pte;
886}
887
Heiko Carstens84afdce2010-10-25 16:10:36 +0200888#ifdef CONFIG_HUGETLB_PAGE
889static inline pte_t pte_mkhuge(pte_t pte)
890{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200891 pte_val(pte) |= _PAGE_LARGE;
Heiko Carstens84afdce2010-10-25 16:10:36 +0200892 return pte;
893}
894#endif
895
Martin Schwidefsky34eeaf32016-06-14 12:38:40 +0200896#define IPTE_GLOBAL 0
897#define IPTE_LOCAL 1
898
899static inline void __ptep_ipte(unsigned long address, pte_t *ptep, int local)
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200900{
Martin Schwidefsky53e857f2012-09-10 13:00:09 +0200901 unsigned long pto = (unsigned long) ptep;
902
Martin Schwidefsky34eeaf32016-06-14 12:38:40 +0200903 /* Invalidation + TLB flush for the pte */
Martin Schwidefsky53e857f2012-09-10 13:00:09 +0200904 asm volatile(
Martin Schwidefsky34eeaf32016-06-14 12:38:40 +0200905 " .insn rrf,0xb2210000,%[r1],%[r2],0,%[m4]"
906 : "+m" (*ptep) : [r1] "a" (pto), [r2] "a" (address),
907 [m4] "i" (local));
Martin Schwidefsky53e857f2012-09-10 13:00:09 +0200908}
909
Martin Schwidefsky34eeaf32016-06-14 12:38:40 +0200910static inline void __ptep_ipte_range(unsigned long address, int nr,
911 pte_t *ptep, int local)
Martin Schwidefsky1b948d62014-04-03 13:55:01 +0200912{
913 unsigned long pto = (unsigned long) ptep;
914
Martin Schwidefsky34eeaf32016-06-14 12:38:40 +0200915 /* Invalidate a range of ptes + TLB flush of the ptes */
Heiko Carstenscfb0b242014-09-23 21:29:20 +0200916 do {
917 asm volatile(
Martin Schwidefsky34eeaf32016-06-14 12:38:40 +0200918 " .insn rrf,0xb2210000,%[r1],%[r2],%[r3],%[m4]"
919 : [r2] "+a" (address), [r3] "+a" (nr)
920 : [r1] "a" (pto), [m4] "i" (local) : "memory");
Heiko Carstenscfb0b242014-09-23 21:29:20 +0200921 } while (nr != 255);
922}
923
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200924/*
925 * This is hard to understand. ptep_get_and_clear and ptep_clear_flush
926 * both clear the TLB for the unmapped pte. The reason is that
927 * ptep_get_and_clear is used in common code (e.g. change_pte_range)
928 * to modify an active pte. The sequence is
929 * 1) ptep_get_and_clear
930 * 2) set_pte_at
931 * 3) flush_tlb_range
932 * On s390 the tlb needs to get flushed with the modification of the pte
933 * if the pte is active. The only way how this can be implemented is to
934 * have ptep_get_and_clear do the tlb flush. In exchange flush_tlb_range
935 * is a nop.
936 */
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100937pte_t ptep_xchg_direct(struct mm_struct *, unsigned long, pte_t *, pte_t);
938pte_t ptep_xchg_lazy(struct mm_struct *, unsigned long, pte_t *, pte_t);
939
940#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
941static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
942 unsigned long addr, pte_t *ptep)
943{
944 pte_t pte = *ptep;
945
946 pte = ptep_xchg_direct(vma->vm_mm, addr, ptep, pte_mkold(pte));
947 return pte_young(pte);
948}
949
950#define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
951static inline int ptep_clear_flush_young(struct vm_area_struct *vma,
952 unsigned long address, pte_t *ptep)
953{
954 return ptep_test_and_clear_young(vma, address, ptep);
955}
956
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200957#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200958static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100959 unsigned long addr, pte_t *ptep)
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200960{
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100961 return ptep_xchg_lazy(mm, addr, ptep, __pte(_PAGE_INVALID));
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200962}
963
964#define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100965pte_t ptep_modify_prot_start(struct mm_struct *, unsigned long, pte_t *);
966void ptep_modify_prot_commit(struct mm_struct *, unsigned long, pte_t *, pte_t);
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200967
968#define __HAVE_ARCH_PTEP_CLEAR_FLUSH
Martin Schwidefskyf0e47c22007-07-17 04:03:03 -0700969static inline pte_t ptep_clear_flush(struct vm_area_struct *vma,
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100970 unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100972 return ptep_xchg_direct(vma->vm_mm, addr, ptep, __pte(_PAGE_INVALID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200975/*
976 * The batched pte unmap code uses ptep_get_and_clear_full to clear the
977 * ptes. Here an optimization is possible. tlb_gather_mmu flushes all
978 * tlbs of an mm if it can guarantee that the ptes of the mm_struct
979 * cannot be accessed while the batched unmap is running. In this case
980 * full==1 and a simple pte_clear is enough. See tlb.h.
981 */
982#define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
983static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100984 unsigned long addr,
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200985 pte_t *ptep, int full)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100987 if (full) {
988 pte_t pte = *ptep;
989 *ptep = __pte(_PAGE_INVALID);
990 return pte;
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200991 }
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100992 return ptep_xchg_lazy(mm, addr, ptep, __pte(_PAGE_INVALID));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200995#define __HAVE_ARCH_PTEP_SET_WRPROTECT
Martin Schwidefskyebde7652016-03-08 11:08:09 +0100996static inline void ptep_set_wrprotect(struct mm_struct *mm,
997 unsigned long addr, pte_t *ptep)
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200998{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200999 pte_t pte = *ptep;
1000
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001001 if (pte_write(pte))
1002 ptep_xchg_lazy(mm, addr, ptep, pte_wrprotect(pte));
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001003}
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001004
1005#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001006static inline int ptep_set_access_flags(struct vm_area_struct *vma,
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001007 unsigned long addr, pte_t *ptep,
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001008 pte_t entry, int dirty)
1009{
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001010 if (pte_same(*ptep, entry))
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001011 return 0;
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001012 ptep_xchg_direct(vma->vm_mm, addr, ptep, entry);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001013 return 1;
1014}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001016/*
1017 * Additional functions to handle KVM guest page tables
1018 */
1019void ptep_set_pte_at(struct mm_struct *mm, unsigned long addr,
1020 pte_t *ptep, pte_t entry);
1021void ptep_set_notify(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001022void ptep_notify(struct mm_struct *mm, unsigned long addr,
1023 pte_t *ptep, unsigned long bits);
Martin Schwidefskyb2d73b22016-03-08 11:54:42 +01001024int ptep_force_prot(struct mm_struct *mm, unsigned long gaddr,
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001025 pte_t *ptep, int prot, unsigned long bit);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001026void ptep_zap_unused(struct mm_struct *mm, unsigned long addr,
1027 pte_t *ptep , int reset);
1028void ptep_zap_key(struct mm_struct *mm, unsigned long addr, pte_t *ptep);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001029int ptep_shadow_pte(struct mm_struct *mm, unsigned long saddr,
David Hildenbranda9d23e72016-03-08 12:21:41 +01001030 pte_t *sptep, pte_t *tptep, pte_t pte);
Martin Schwidefsky4be130a2016-03-08 12:12:18 +01001031void ptep_unshadow_pte(struct mm_struct *mm, unsigned long saddr, pte_t *ptep);
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001032
1033bool test_and_clear_guest_dirty(struct mm_struct *mm, unsigned long address);
1034int set_guest_storage_key(struct mm_struct *mm, unsigned long addr,
1035 unsigned char key, bool nq);
David Hildenbrand1824c722016-05-10 09:43:11 +02001036int cond_set_guest_storage_key(struct mm_struct *mm, unsigned long addr,
1037 unsigned char key, unsigned char *oldkey,
1038 bool nq, bool mr, bool mc);
David Hildenbranda7e19ab2016-05-10 09:50:21 +02001039int reset_guest_reference_bit(struct mm_struct *mm, unsigned long addr);
David Hildenbrand154c8c12016-05-09 11:22:34 +02001040int get_guest_storage_key(struct mm_struct *mm, unsigned long addr,
1041 unsigned char *key);
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001042
1043/*
1044 * Certain architectures need to do special things when PTEs
1045 * within a page table are directly modified. Thus, the following
1046 * hook is made available.
1047 */
1048static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
1049 pte_t *ptep, pte_t entry)
1050{
Martin Schwidefsky57d7f932016-03-22 10:54:24 +01001051 if (!MACHINE_HAS_NX)
1052 pte_val(entry) &= ~_PAGE_NOEXEC;
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001053 if (mm_has_pgste(mm))
Martin Schwidefsky1e133ab2016-03-08 11:49:57 +01001054 ptep_set_pte_at(mm, addr, ptep, entry);
Martin Schwidefskyebde7652016-03-08 11:08:09 +01001055 else
1056 *ptep = entry;
1057}
1058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 * Conversion functions: convert a page and protection to a page entry,
1061 * and a page entry and page directory to the page they refer to.
1062 */
1063static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
1064{
1065 pte_t __pte;
1066 pte_val(__pte) = physpage + pgprot_val(pgprot);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001067 return pte_mkyoung(__pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
Heiko Carstens2dcea572006-09-29 01:58:41 -07001070static inline pte_t mk_pte(struct page *page, pgprot_t pgprot)
1071{
Heiko Carstens0b2b6e1d2006-10-04 20:02:23 +02001072 unsigned long physpage = page_to_phys(page);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001073 pte_t __pte = mk_pte_phys(physpage, pgprot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Martin Schwidefskye5098612013-07-23 20:57:57 +02001075 if (pte_write(__pte) && PageDirty(page))
1076 __pte = pte_mkdirty(__pte);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001077 return __pte;
Heiko Carstens2dcea572006-09-29 01:58:41 -07001078}
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001081#define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
1082#define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
1083#define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001085#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086#define pgd_offset_k(address) pgd_offset(&init_mm, address)
1087
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001088#define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN)
1089#define pud_deref(pud) (pud_val(pud) & _REGION_ENTRY_ORIGIN)
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001090#define pgd_deref(pgd) (pgd_val(pgd) & _REGION_ENTRY_ORIGIN)
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001091
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001092static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
1093{
Martin Schwidefsky6252d702008-02-09 18:24:37 +01001094 pud_t *pud = (pud_t *) pgd;
1095 if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
1096 pud = (pud_t *) pgd_deref(*pgd);
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001097 return pud + pud_index(address);
1098}
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001099
1100static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
1101{
Martin Schwidefsky6252d702008-02-09 18:24:37 +01001102 pmd_t *pmd = (pmd_t *) pud;
1103 if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
1104 pmd = (pmd_t *) pud_deref(*pud);
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001105 return pmd + pmd_index(address);
1106}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001108#define pfn_pte(pfn,pgprot) mk_pte_phys(__pa((pfn) << PAGE_SHIFT),(pgprot))
1109#define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT)
1110#define pte_page(x) pfn_to_page(pte_pfn(x))
1111
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001112#define pmd_page(pmd) pfn_to_page(pmd_pfn(pmd))
Gerald Schaeferd08de8e2016-07-04 14:47:01 +02001113#define pud_page(pud) pfn_to_page(pud_pfn(pud))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001114
1115/* Find an entry in the lowest level page table.. */
1116#define pte_offset(pmd, addr) ((pte_t *) pmd_deref(*(pmd)) + pte_index(addr))
1117#define pte_offset_kernel(pmd, address) pte_offset(pmd,address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118#define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119#define pte_unmap(pte) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001121static inline pmd_t pmd_wrprotect(pmd_t pmd)
1122{
1123 pmd_val(pmd) &= ~_SEGMENT_ENTRY_WRITE;
1124 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
1125 return pmd;
1126}
1127
1128static inline pmd_t pmd_mkwrite(pmd_t pmd)
1129{
1130 pmd_val(pmd) |= _SEGMENT_ENTRY_WRITE;
1131 if (pmd_large(pmd) && !(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY))
1132 return pmd;
1133 pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT;
1134 return pmd;
1135}
1136
1137static inline pmd_t pmd_mkclean(pmd_t pmd)
1138{
1139 if (pmd_large(pmd)) {
1140 pmd_val(pmd) &= ~_SEGMENT_ENTRY_DIRTY;
1141 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
1142 }
1143 return pmd;
1144}
1145
1146static inline pmd_t pmd_mkdirty(pmd_t pmd)
1147{
1148 if (pmd_large(pmd)) {
Martin Schwidefsky5614dd92015-04-22 14:47:42 +02001149 pmd_val(pmd) |= _SEGMENT_ENTRY_DIRTY |
1150 _SEGMENT_ENTRY_SOFT_DIRTY;
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001151 if (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE)
1152 pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT;
1153 }
1154 return pmd;
1155}
1156
Heiko Carstens9e20b4d2016-05-10 10:34:47 +02001157static inline pud_t pud_wrprotect(pud_t pud)
1158{
1159 pud_val(pud) &= ~_REGION3_ENTRY_WRITE;
1160 pud_val(pud) |= _REGION_ENTRY_PROTECT;
1161 return pud;
1162}
1163
1164static inline pud_t pud_mkwrite(pud_t pud)
1165{
1166 pud_val(pud) |= _REGION3_ENTRY_WRITE;
1167 if (pud_large(pud) && !(pud_val(pud) & _REGION3_ENTRY_DIRTY))
1168 return pud;
1169 pud_val(pud) &= ~_REGION_ENTRY_PROTECT;
1170 return pud;
1171}
1172
1173static inline pud_t pud_mkclean(pud_t pud)
1174{
1175 if (pud_large(pud)) {
1176 pud_val(pud) &= ~_REGION3_ENTRY_DIRTY;
1177 pud_val(pud) |= _REGION_ENTRY_PROTECT;
1178 }
1179 return pud;
1180}
1181
1182static inline pud_t pud_mkdirty(pud_t pud)
1183{
1184 if (pud_large(pud)) {
1185 pud_val(pud) |= _REGION3_ENTRY_DIRTY |
1186 _REGION3_ENTRY_SOFT_DIRTY;
1187 if (pud_val(pud) & _REGION3_ENTRY_WRITE)
1188 pud_val(pud) &= ~_REGION_ENTRY_PROTECT;
1189 }
1190 return pud;
1191}
1192
1193#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLB_PAGE)
1194static inline unsigned long massage_pgprot_pmd(pgprot_t pgprot)
1195{
1196 /*
Martin Schwidefsky57d7f932016-03-22 10:54:24 +01001197 * pgprot is PAGE_NONE, PAGE_RO, PAGE_RX, PAGE_RW or PAGE_RWX
1198 * (see __Pxxx / __Sxxx). Convert to segment table entry format.
Heiko Carstens9e20b4d2016-05-10 10:34:47 +02001199 */
1200 if (pgprot_val(pgprot) == pgprot_val(PAGE_NONE))
1201 return pgprot_val(SEGMENT_NONE);
Martin Schwidefsky57d7f932016-03-22 10:54:24 +01001202 if (pgprot_val(pgprot) == pgprot_val(PAGE_RO))
1203 return pgprot_val(SEGMENT_RO);
1204 if (pgprot_val(pgprot) == pgprot_val(PAGE_RX))
1205 return pgprot_val(SEGMENT_RX);
1206 if (pgprot_val(pgprot) == pgprot_val(PAGE_RW))
1207 return pgprot_val(SEGMENT_RW);
1208 return pgprot_val(SEGMENT_RWX);
Heiko Carstens9e20b4d2016-05-10 10:34:47 +02001209}
1210
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001211static inline pmd_t pmd_mkyoung(pmd_t pmd)
1212{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001213 if (pmd_large(pmd)) {
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001214 pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG;
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001215 if (pmd_val(pmd) & _SEGMENT_ENTRY_READ)
1216 pmd_val(pmd) &= ~_SEGMENT_ENTRY_INVALID;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001217 }
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001218 return pmd;
1219}
1220
1221static inline pmd_t pmd_mkold(pmd_t pmd)
1222{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001223 if (pmd_large(pmd)) {
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001224 pmd_val(pmd) &= ~_SEGMENT_ENTRY_YOUNG;
1225 pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID;
1226 }
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001227 return pmd;
1228}
1229
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001230static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
1231{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001232 if (pmd_large(pmd)) {
1233 pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN_LARGE |
1234 _SEGMENT_ENTRY_DIRTY | _SEGMENT_ENTRY_YOUNG |
Kirill A. Shutemovfecffad2016-01-15 16:53:24 -08001235 _SEGMENT_ENTRY_LARGE | _SEGMENT_ENTRY_SOFT_DIRTY;
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001236 pmd_val(pmd) |= massage_pgprot_pmd(newprot);
1237 if (!(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY))
1238 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
1239 if (!(pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG))
1240 pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID;
1241 return pmd;
1242 }
1243 pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001244 pmd_val(pmd) |= massage_pgprot_pmd(newprot);
1245 return pmd;
1246}
1247
Gerald Schaefer106c9922013-04-29 15:07:23 -07001248static inline pmd_t mk_pmd_phys(unsigned long physpage, pgprot_t pgprot)
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001249{
Gerald Schaefer106c9922013-04-29 15:07:23 -07001250 pmd_t __pmd;
1251 pmd_val(__pmd) = physpage + massage_pgprot_pmd(pgprot);
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001252 return __pmd;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001253}
1254
Gerald Schaefer106c9922013-04-29 15:07:23 -07001255#endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLB_PAGE */
1256
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001257static inline void __pmdp_csp(pmd_t *pmdp)
1258{
Heiko Carstens4ccccc52016-05-14 10:46:33 +02001259 csp((unsigned int *)pmdp + 1, pmd_val(*pmdp),
1260 pmd_val(*pmdp) | _SEGMENT_ENTRY_INVALID);
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001261}
1262
Martin Schwidefsky47e4d852016-06-14 12:41:35 +02001263#define IDTE_GLOBAL 0
1264#define IDTE_LOCAL 1
1265
1266static inline void __pmdp_idte(unsigned long address, pmd_t *pmdp, int local)
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001267{
1268 unsigned long sto;
1269
1270 sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t);
1271 asm volatile(
Martin Schwidefsky47e4d852016-06-14 12:41:35 +02001272 " .insn rrf,0xb98e0000,%[r1],%[r2],0,%[m4]"
1273 : "+m" (*pmdp)
1274 : [r1] "a" (sto), [r2] "a" ((address & HPAGE_MASK)),
1275 [m4] "i" (local)
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001276 : "cc" );
1277}
1278
Martin Schwidefsky47e4d852016-06-14 12:41:35 +02001279static inline void __pudp_idte(unsigned long address, pud_t *pudp, int local)
Gerald Schaeferd08de8e2016-07-04 14:47:01 +02001280{
1281 unsigned long r3o;
1282
1283 r3o = (unsigned long) pudp - pud_index(address) * sizeof(pud_t);
1284 r3o |= _ASCE_TYPE_REGION3;
1285 asm volatile(
Martin Schwidefsky47e4d852016-06-14 12:41:35 +02001286 " .insn rrf,0xb98e0000,%[r1],%[r2],0,%[m4]"
1287 : "+m" (*pudp)
1288 : [r1] "a" (r3o), [r2] "a" ((address & PUD_MASK)),
1289 [m4] "i" (local)
Gerald Schaeferd08de8e2016-07-04 14:47:01 +02001290 : "cc");
1291}
1292
Martin Schwidefsky227be792016-03-08 11:09:25 +01001293pmd_t pmdp_xchg_direct(struct mm_struct *, unsigned long, pmd_t *, pmd_t);
1294pmd_t pmdp_xchg_lazy(struct mm_struct *, unsigned long, pmd_t *, pmd_t);
Gerald Schaeferd08de8e2016-07-04 14:47:01 +02001295pud_t pudp_xchg_direct(struct mm_struct *, unsigned long, pud_t *, pud_t);
Martin Schwidefsky3eabaee2013-07-26 15:04:02 +02001296
Gerald Schaefer106c9922013-04-29 15:07:23 -07001297#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1298
1299#define __HAVE_ARCH_PGTABLE_DEPOSIT
Martin Schwidefsky227be792016-03-08 11:09:25 +01001300void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
1301 pgtable_t pgtable);
Gerald Schaefer106c9922013-04-29 15:07:23 -07001302
1303#define __HAVE_ARCH_PGTABLE_WITHDRAW
Martin Schwidefsky227be792016-03-08 11:09:25 +01001304pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp);
1305
1306#define __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
1307static inline int pmdp_set_access_flags(struct vm_area_struct *vma,
1308 unsigned long addr, pmd_t *pmdp,
1309 pmd_t entry, int dirty)
1310{
1311 VM_BUG_ON(addr & ~HPAGE_MASK);
1312
1313 entry = pmd_mkyoung(entry);
1314 if (dirty)
1315 entry = pmd_mkdirty(entry);
1316 if (pmd_val(*pmdp) == pmd_val(entry))
1317 return 0;
1318 pmdp_xchg_direct(vma->vm_mm, addr, pmdp, entry);
1319 return 1;
1320}
1321
1322#define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
1323static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
1324 unsigned long addr, pmd_t *pmdp)
1325{
1326 pmd_t pmd = *pmdp;
1327
1328 pmd = pmdp_xchg_direct(vma->vm_mm, addr, pmdp, pmd_mkold(pmd));
1329 return pmd_young(pmd);
1330}
1331
1332#define __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH
1333static inline int pmdp_clear_flush_young(struct vm_area_struct *vma,
1334 unsigned long addr, pmd_t *pmdp)
1335{
1336 VM_BUG_ON(addr & ~HPAGE_MASK);
1337 return pmdp_test_and_clear_young(vma, addr, pmdp);
1338}
Gerald Schaefer106c9922013-04-29 15:07:23 -07001339
Gerald Schaefer106c9922013-04-29 15:07:23 -07001340static inline void set_pmd_at(struct mm_struct *mm, unsigned long addr,
1341 pmd_t *pmdp, pmd_t entry)
1342{
Martin Schwidefsky57d7f932016-03-22 10:54:24 +01001343 if (!MACHINE_HAS_NX)
1344 pmd_val(entry) &= ~_SEGMENT_ENTRY_NOEXEC;
Gerald Schaefer106c9922013-04-29 15:07:23 -07001345 *pmdp = entry;
1346}
1347
1348static inline pmd_t pmd_mkhuge(pmd_t pmd)
1349{
1350 pmd_val(pmd) |= _SEGMENT_ENTRY_LARGE;
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001351 pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG;
1352 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001353 return pmd;
1354}
1355
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001356#define __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR
1357static inline pmd_t pmdp_huge_get_and_clear(struct mm_struct *mm,
Martin Schwidefsky227be792016-03-08 11:09:25 +01001358 unsigned long addr, pmd_t *pmdp)
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001359{
Martin Schwidefsky227be792016-03-08 11:09:25 +01001360 return pmdp_xchg_direct(mm, addr, pmdp, __pmd(_SEGMENT_ENTRY_INVALID));
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001361}
1362
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001363#define __HAVE_ARCH_PMDP_HUGE_GET_AND_CLEAR_FULL
1364static inline pmd_t pmdp_huge_get_and_clear_full(struct mm_struct *mm,
Martin Schwidefsky227be792016-03-08 11:09:25 +01001365 unsigned long addr,
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001366 pmd_t *pmdp, int full)
Martin Schwidefskyfcbe08d62014-10-24 10:52:29 +02001367{
Martin Schwidefsky227be792016-03-08 11:09:25 +01001368 if (full) {
1369 pmd_t pmd = *pmdp;
1370 *pmdp = __pmd(_SEGMENT_ENTRY_INVALID);
1371 return pmd;
1372 }
1373 return pmdp_xchg_lazy(mm, addr, pmdp, __pmd(_SEGMENT_ENTRY_INVALID));
Martin Schwidefskyfcbe08d62014-10-24 10:52:29 +02001374}
1375
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001376#define __HAVE_ARCH_PMDP_HUGE_CLEAR_FLUSH
1377static inline pmd_t pmdp_huge_clear_flush(struct vm_area_struct *vma,
Martin Schwidefsky227be792016-03-08 11:09:25 +01001378 unsigned long addr, pmd_t *pmdp)
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001379{
Martin Schwidefsky227be792016-03-08 11:09:25 +01001380 return pmdp_huge_get_and_clear(vma->vm_mm, addr, pmdp);
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001381}
1382
1383#define __HAVE_ARCH_PMDP_INVALIDATE
1384static inline void pmdp_invalidate(struct vm_area_struct *vma,
Martin Schwidefsky227be792016-03-08 11:09:25 +01001385 unsigned long addr, pmd_t *pmdp)
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001386{
Martin Schwidefsky227be792016-03-08 11:09:25 +01001387 pmdp_xchg_direct(vma->vm_mm, addr, pmdp, __pmd(_SEGMENT_ENTRY_INVALID));
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001388}
1389
Gerald Schaeferbe328652013-01-21 16:48:07 +01001390#define __HAVE_ARCH_PMDP_SET_WRPROTECT
1391static inline void pmdp_set_wrprotect(struct mm_struct *mm,
Martin Schwidefsky227be792016-03-08 11:09:25 +01001392 unsigned long addr, pmd_t *pmdp)
Gerald Schaeferbe328652013-01-21 16:48:07 +01001393{
1394 pmd_t pmd = *pmdp;
1395
Martin Schwidefsky227be792016-03-08 11:09:25 +01001396 if (pmd_write(pmd))
1397 pmd = pmdp_xchg_lazy(mm, addr, pmdp, pmd_wrprotect(pmd));
Gerald Schaeferbe328652013-01-21 16:48:07 +01001398}
1399
Aneesh Kumar K.Vf28b6ff2015-06-24 16:57:42 -07001400static inline pmd_t pmdp_collapse_flush(struct vm_area_struct *vma,
1401 unsigned long address,
1402 pmd_t *pmdp)
1403{
Aneesh Kumar K.V8809aa22015-06-24 16:57:44 -07001404 return pmdp_huge_get_and_clear(vma->vm_mm, address, pmdp);
Aneesh Kumar K.Vf28b6ff2015-06-24 16:57:42 -07001405}
1406#define pmdp_collapse_flush pmdp_collapse_flush
1407
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001408#define pfn_pmd(pfn, pgprot) mk_pmd_phys(__pa((pfn) << PAGE_SHIFT), (pgprot))
1409#define mk_pmd(page, pgprot) pfn_pmd(page_to_pfn(page), (pgprot))
1410
1411static inline int pmd_trans_huge(pmd_t pmd)
1412{
1413 return pmd_val(pmd) & _SEGMENT_ENTRY_LARGE;
1414}
1415
Hugh Dickinsfd8cfd32016-05-19 17:13:00 -07001416#define has_transparent_hugepage has_transparent_hugepage
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001417static inline int has_transparent_hugepage(void)
1418{
1419 return MACHINE_HAS_HPAGE ? 1 : 0;
1420}
Gerald Schaefer75077af2012-10-08 16:30:15 -07001421#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 * 64 bit swap entry format:
1425 * A page-table entry has some bits we have to treat in a special way.
Geert Uytterhoeven4e0a6412015-05-21 14:00:47 +02001426 * Bits 52 and bit 55 have to be zero, otherwise a specification
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 * exception will occur instead of a page translation exception. The
Geert Uytterhoeven4e0a6412015-05-21 14:00:47 +02001428 * specification exception has the bad habit not to store necessary
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 * information in the lowcore.
Martin Schwidefskya1c843b2015-04-22 13:55:59 +02001430 * Bits 54 and 63 are used to indicate the page type.
1431 * A swap pte is indicated by bit pattern (pte & 0x201) == 0x200
1432 * This leaves the bits 0-51 and bits 56-62 to store type and offset.
1433 * We use the 5 bits from 57-61 for the type and the 52 bits from 0-51
1434 * for the offset.
1435 * | offset |01100|type |00|
1436 * |0000000000111111111122222222223333333333444444444455|55555|55566|66|
1437 * |0123456789012345678901234567890123456789012345678901|23456|78901|23|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 */
Heiko Carstens5a79859a2015-02-12 13:08:27 +01001439
Martin Schwidefskya1c843b2015-04-22 13:55:59 +02001440#define __SWP_OFFSET_MASK ((1UL << 52) - 1)
1441#define __SWP_OFFSET_SHIFT 12
1442#define __SWP_TYPE_MASK ((1UL << 5) - 1)
1443#define __SWP_TYPE_SHIFT 2
Heiko Carstens5a79859a2015-02-12 13:08:27 +01001444
Adrian Bunk4448aaf2005-11-08 21:34:42 -08001445static inline pte_t mk_swap_pte(unsigned long type, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
1447 pte_t pte;
Martin Schwidefskya1c843b2015-04-22 13:55:59 +02001448
1449 pte_val(pte) = _PAGE_INVALID | _PAGE_PROTECT;
1450 pte_val(pte) |= (offset & __SWP_OFFSET_MASK) << __SWP_OFFSET_SHIFT;
1451 pte_val(pte) |= (type & __SWP_TYPE_MASK) << __SWP_TYPE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 return pte;
1453}
1454
Martin Schwidefskya1c843b2015-04-22 13:55:59 +02001455static inline unsigned long __swp_type(swp_entry_t entry)
1456{
1457 return (entry.val >> __SWP_TYPE_SHIFT) & __SWP_TYPE_MASK;
1458}
1459
1460static inline unsigned long __swp_offset(swp_entry_t entry)
1461{
1462 return (entry.val >> __SWP_OFFSET_SHIFT) & __SWP_OFFSET_MASK;
1463}
1464
1465static inline swp_entry_t __swp_entry(unsigned long type, unsigned long offset)
1466{
1467 return (swp_entry_t) { pte_val(mk_swap_pte(type, offset)) };
1468}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
1471#define __swp_entry_to_pte(x) ((pte_t) { (x).val })
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473#endif /* !__ASSEMBLY__ */
1474
1475#define kern_addr_valid(addr) (1)
1476
Heiko Carstens17f34582008-04-30 13:38:47 +02001477extern int vmem_add_mapping(unsigned long start, unsigned long size);
1478extern int vmem_remove_mapping(unsigned long start, unsigned long size);
Carsten Otte402b0862008-03-25 18:47:10 +01001479extern int s390_enable_sie(void);
Dominik Dingel3ac8e382014-10-23 12:09:17 +02001480extern int s390_enable_skey(void);
Dominik Dingela13cff32014-10-23 12:07:14 +02001481extern void s390_reset_cmma(struct mm_struct *mm);
Heiko Carstensf4eb07c2006-12-08 15:56:07 +01001482
Martin Schwidefsky1f6b83e2015-01-14 17:51:17 +01001483/* s390 has a private copy of get unmapped area to deal with cache synonyms */
1484#define HAVE_ARCH_UNMAPPED_AREA
1485#define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487/*
1488 * No page table caches to initialise
1489 */
Heiko Carstens765a0ca2013-03-23 10:29:01 +01001490static inline void pgtable_cache_init(void) { }
1491static inline void check_pgt_cache(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493#include <asm-generic/pgtable.h>
1494
1495#endif /* _S390_PAGE_H */