blob: 00d460742e1e1f7f939f005f4b72c85e1a3d73e1 [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/*
15 * The Linux memory management assumes a three-level page table setup. For
16 * s390 31 bit we "fold" the mid level into the top-level page table, so
17 * that we physically have the same two-level page table as the s390 mmu
18 * expects in 31 bit mode. For s390 64 bit we use three of the five levels
19 * the hardware provides (region first and region second tables are not
20 * used).
21 *
22 * The "pgd_xxx()" functions are trivial for a folded two-level
23 * setup: the pgd is never bad, and a pmd always exists (as it's folded
24 * into the pgd entry)
25 *
26 * This file contains the functions and defines necessary to modify and use
27 * the S390 page table tree.
28 */
29#ifndef __ASSEMBLY__
Heiko Carstens9789db02008-07-14 09:59:11 +020030#include <linux/sched.h>
Heiko Carstens2dcea572006-09-29 01:58:41 -070031#include <linux/mm_types.h>
Martin Schwidefskyabf09be2012-11-07 13:17:37 +010032#include <linux/page-flags.h>
Martin Schwidefsky527e30b2014-04-30 16:04:25 +020033#include <linux/radix-tree.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/bug.h>
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +020035#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037extern pgd_t swapper_pg_dir[] __attribute__ ((aligned (4096)));
38extern void paging_init(void);
Heiko Carstens2b67fc42007-02-05 21:16:47 +010039extern void vmem_map_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * The S390 doesn't have any external MMU info: the kernel page
43 * tables contain all the necessary information.
44 */
Russell King4b3073e2009-12-18 16:40:18 +000045#define update_mmu_cache(vma, address, ptep) do { } while (0)
David Millerb113da62012-10-08 16:34:25 -070046#define update_mmu_cache_pmd(vma, address, ptep) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020049 * ZERO_PAGE is a global shared page that is always zero; used
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * for zero-mapped memory areas etc..
51 */
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020052
53extern unsigned long empty_zero_page;
54extern unsigned long zero_page_mask;
55
56#define ZERO_PAGE(vaddr) \
57 (virt_to_page((void *)(empty_zero_page + \
58 (((unsigned long)(vaddr)) &zero_page_mask))))
Kirill A. Shutemov816422a2012-12-12 13:52:36 -080059#define __HAVE_COLOR_ZERO_PAGE
Martin Schwidefsky238ec4e2010-10-25 16:10:07 +020060
Linus Torvalds4f2e2902013-04-17 08:46:19 -070061/* TODO: s390 cannot support io_remap_pfn_range... */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#endif /* !__ASSEMBLY__ */
63
64/*
65 * PMD_SHIFT determines the size of the area a second-level page
66 * table can map
67 * PGDIR_SHIFT determines what a third-level page table entry can map
68 */
Heiko Carstensf4815ac2012-05-23 16:24:51 +020069#ifndef CONFIG_64BIT
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010070# define PMD_SHIFT 20
71# define PUD_SHIFT 20
72# define PGDIR_SHIFT 20
Heiko Carstensf4815ac2012-05-23 16:24:51 +020073#else /* CONFIG_64BIT */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010074# define PMD_SHIFT 20
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020075# define PUD_SHIFT 31
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010076# define PGDIR_SHIFT 42
Heiko Carstensf4815ac2012-05-23 16:24:51 +020077#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79#define PMD_SIZE (1UL << PMD_SHIFT)
80#define PMD_MASK (~(PMD_SIZE-1))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +020081#define PUD_SIZE (1UL << PUD_SHIFT)
82#define PUD_MASK (~(PUD_SIZE-1))
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010083#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
84#define PGDIR_MASK (~(PGDIR_SIZE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/*
87 * entries per page directory level: the S390 is two-level, so
88 * we don't really have any PMD directory physically.
89 * for S390 segment-table entries are combined to one PGD
90 * that leads to 1024 pte per pgd
91 */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010092#define PTRS_PER_PTE 256
Heiko Carstensf4815ac2012-05-23 16:24:51 +020093#ifndef CONFIG_64BIT
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010094#define PTRS_PER_PMD 1
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010095#define PTRS_PER_PUD 1
Heiko Carstensf4815ac2012-05-23 16:24:51 +020096#else /* CONFIG_64BIT */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +010097#define PTRS_PER_PMD 2048
Martin Schwidefsky5a216a22008-02-09 18:24:36 +010098#define PTRS_PER_PUD 2048
Heiko Carstensf4815ac2012-05-23 16:24:51 +020099#endif /* CONFIG_64BIT */
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100100#define PTRS_PER_PGD 2048
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Hugh Dickinsd455a362005-04-19 13:29:23 -0700102#define FIRST_USER_ADDRESS 0
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define pte_ERROR(e) \
105 printk("%s:%d: bad pte %p.\n", __FILE__, __LINE__, (void *) pte_val(e))
106#define pmd_ERROR(e) \
107 printk("%s:%d: bad pmd %p.\n", __FILE__, __LINE__, (void *) pmd_val(e))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200108#define pud_ERROR(e) \
109 printk("%s:%d: bad pud %p.\n", __FILE__, __LINE__, (void *) pud_val(e))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define pgd_ERROR(e) \
111 printk("%s:%d: bad pgd %p.\n", __FILE__, __LINE__, (void *) pgd_val(e))
112
113#ifndef __ASSEMBLY__
114/*
Heiko Carstensc972cc62012-10-05 16:52:18 +0200115 * The vmalloc and module area will always be on the topmost area of the kernel
116 * mapping. We reserve 96MB (31bit) / 128GB (64bit) for vmalloc and modules.
117 * On 64 bit kernels we have a 2GB area at the top of the vmalloc area where
118 * modules will reside. That makes sure that inter module branches always
119 * happen without trampolines and in addition the placement within a 2GB frame
120 * is branch prediction unit friendly.
Heiko Carstens8b62bc92006-12-04 15:40:56 +0100121 */
Heiko Carstens239a64252009-06-12 10:26:33 +0200122extern unsigned long VMALLOC_START;
Martin Schwidefsky14045eb2011-12-27 11:27:07 +0100123extern unsigned long VMALLOC_END;
124extern struct page *vmemmap;
Heiko Carstens239a64252009-06-12 10:26:33 +0200125
Martin Schwidefsky14045eb2011-12-27 11:27:07 +0100126#define VMEM_MAX_PHYS ((unsigned long) vmemmap)
Christian Borntraeger5fd9c6e2008-01-26 14:11:00 +0100127
Heiko Carstensc972cc62012-10-05 16:52:18 +0200128#ifdef CONFIG_64BIT
129extern unsigned long MODULES_VADDR;
130extern unsigned long MODULES_END;
131#define MODULES_VADDR MODULES_VADDR
132#define MODULES_END MODULES_END
133#define MODULES_LEN (1UL << 31)
134#endif
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/*
137 * A 31 bit pagetable entry of S390 has following format:
138 * | PFRA | | OS |
139 * 0 0IP0
140 * 00000000001111111111222222222233
141 * 01234567890123456789012345678901
142 *
143 * I Page-Invalid Bit: Page is not available for address-translation
144 * P Page-Protection Bit: Store access not possible for page
145 *
146 * A 31 bit segmenttable entry of S390 has following format:
147 * | P-table origin | |PTL
148 * 0 IC
149 * 00000000001111111111222222222233
150 * 01234567890123456789012345678901
151 *
152 * I Segment-Invalid Bit: Segment is not available for address-translation
153 * C Common-Segment Bit: Segment is not private (PoP 3-30)
154 * PTL Page-Table-Length: Page-table length (PTL+1*16 entries -> up to 256)
155 *
156 * The 31 bit segmenttable origin of S390 has following format:
157 *
158 * |S-table origin | | STL |
159 * X **GPS
160 * 00000000001111111111222222222233
161 * 01234567890123456789012345678901
162 *
163 * X Space-Switch event:
164 * G Segment-Invalid Bit: *
165 * P Private-Space Bit: Segment is not private (PoP 3-30)
166 * S Storage-Alteration:
167 * STL Segment-Table-Length: Segment-table length (STL+1*16 entries -> up to 2048)
168 *
169 * A 64 bit pagetable entry of S390 has following format:
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100170 * | PFRA |0IPC| OS |
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 * 0000000000111111111122222222223333333333444444444455555555556666
172 * 0123456789012345678901234567890123456789012345678901234567890123
173 *
174 * I Page-Invalid Bit: Page is not available for address-translation
175 * P Page-Protection Bit: Store access not possible for page
Christian Borntraeger6a985c62009-12-07 12:52:11 +0100176 * C Change-bit override: HW is not required to set change bit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 *
178 * A 64 bit segmenttable entry of S390 has following format:
179 * | P-table origin | TT
180 * 0000000000111111111122222222223333333333444444444455555555556666
181 * 0123456789012345678901234567890123456789012345678901234567890123
182 *
183 * I Segment-Invalid Bit: Segment is not available for address-translation
184 * C Common-Segment Bit: Segment is not private (PoP 3-30)
185 * P Page-Protection Bit: Store access not possible for page
186 * TT Type 00
187 *
188 * A 64 bit region table entry of S390 has following format:
189 * | S-table origin | TF TTTL
190 * 0000000000111111111122222222223333333333444444444455555555556666
191 * 0123456789012345678901234567890123456789012345678901234567890123
192 *
193 * I Segment-Invalid Bit: Segment is not available for address-translation
194 * TT Type 01
195 * TF
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200196 * TL Table length
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 *
198 * The 64 bit regiontable origin of S390 has following format:
199 * | region table origon | DTTL
200 * 0000000000111111111122222222223333333333444444444455555555556666
201 * 0123456789012345678901234567890123456789012345678901234567890123
202 *
203 * X Space-Switch event:
204 * G Segment-Invalid Bit:
205 * P Private-Space Bit:
206 * S Storage-Alteration:
207 * R Real space
208 * TL Table-Length:
209 *
210 * A storage key has the following format:
211 * | ACC |F|R|C|0|
212 * 0 3 4 5 6 7
213 * ACC: access key
214 * F : fetch protection bit
215 * R : referenced bit
216 * C : changed bit
217 */
218
219/* Hardware bits in the page table entry */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200220#define _PAGE_PROTECT 0x200 /* HW read-only bit */
Martin Schwidefsky83377482006-10-18 18:30:51 +0200221#define _PAGE_INVALID 0x400 /* HW invalid bit */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200222#define _PAGE_LARGE 0x800 /* Bit to mark a large pte */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200223
224/* Software bits in the page table entry */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200225#define _PAGE_PRESENT 0x001 /* SW pte present bit */
226#define _PAGE_TYPE 0x002 /* SW pte type bit */
227#define _PAGE_YOUNG 0x004 /* SW pte young bit */
228#define _PAGE_DIRTY 0x008 /* SW pte dirty bit */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200229#define _PAGE_READ 0x010 /* SW pte read bit */
230#define _PAGE_WRITE 0x020 /* SW pte write bit */
231#define _PAGE_SPECIAL 0x040 /* SW associated with special page */
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200232#define _PAGE_UNUSED 0x080 /* SW bit for pgste usage state */
Nick Piggina08cb622008-04-28 02:13:03 -0700233#define __HAVE_ARCH_PTE_SPECIAL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Nick Piggin138c9022008-07-08 11:31:06 +0200235/* Set of bits not changed in pte_modify */
Heiko Carstens6a5c1482014-09-22 08:50:51 +0200236#define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_SPECIAL | _PAGE_DIRTY | \
237 _PAGE_YOUNG)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Martin Schwidefsky83377482006-10-18 18:30:51 +0200239/*
Martin Schwidefskye5098612013-07-23 20:57:57 +0200240 * handle_pte_fault uses pte_present, pte_none and pte_file to find out the
241 * pte type WITHOUT holding the page table lock. The _PAGE_PRESENT bit
242 * is used to distinguish present from not-present ptes. It is changed only
243 * with the page table lock held.
Martin Schwidefsky83377482006-10-18 18:30:51 +0200244 *
Martin Schwidefskye5098612013-07-23 20:57:57 +0200245 * The following table gives the different possible bit combinations for
246 * the pte hardware and software bits in the last 12 bits of a pte:
Martin Schwidefsky83377482006-10-18 18:30:51 +0200247 *
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200248 * 842100000000
249 * 000084210000
250 * 000000008421
251 * .IR...wrdytp
252 * empty .10...000000
253 * swap .10...xxxx10
254 * file .11...xxxxx0
255 * prot-none, clean, old .11...000001
256 * prot-none, clean, young .11...000101
257 * prot-none, dirty, old .10...001001
258 * prot-none, dirty, young .10...001101
259 * read-only, clean, old .11...010001
260 * read-only, clean, young .01...010101
261 * read-only, dirty, old .11...011001
262 * read-only, dirty, young .01...011101
263 * read-write, clean, old .11...110001
264 * read-write, clean, young .01...110101
265 * read-write, dirty, old .10...111001
266 * read-write, dirty, young .00...111101
Martin Schwidefskye5098612013-07-23 20:57:57 +0200267 *
268 * pte_present is true for the bit pattern .xx...xxxxx1, (pte & 0x001) == 0x001
269 * pte_none is true for the bit pattern .10...xxxx00, (pte & 0x603) == 0x400
270 * pte_file is true for the bit pattern .11...xxxxx0, (pte & 0x601) == 0x600
271 * pte_swap is true for the bit pattern .10...xxxx10, (pte & 0x603) == 0x402
Martin Schwidefsky83377482006-10-18 18:30:51 +0200272 */
273
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200274#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200276/* Bits in the segment table address-space-control-element */
277#define _ASCE_SPACE_SWITCH 0x80000000UL /* space switch event */
278#define _ASCE_ORIGIN_MASK 0x7ffff000UL /* segment table origin */
279#define _ASCE_PRIVATE_SPACE 0x100 /* private space control */
280#define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */
281#define _ASCE_TABLE_LENGTH 0x7f /* 128 x 64 entries = 8k */
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283/* Bits in the segment table entry */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200284#define _SEGMENT_ENTRY_BITS 0x7fffffffUL /* Valid segment table bits */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200285#define _SEGMENT_ENTRY_ORIGIN 0x7fffffc0UL /* page table origin */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200286#define _SEGMENT_ENTRY_PROTECT 0x200 /* page protection bit */
287#define _SEGMENT_ENTRY_INVALID 0x20 /* invalid segment table entry */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200288#define _SEGMENT_ENTRY_COMMON 0x10 /* common segment bit */
289#define _SEGMENT_ENTRY_PTL 0x0f /* page table length */
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200290
291#define _SEGMENT_ENTRY_DIRTY 0 /* No sw dirty bit for 31-bit */
292#define _SEGMENT_ENTRY_YOUNG 0 /* No sw young bit for 31-bit */
293#define _SEGMENT_ENTRY_READ 0 /* No sw read bit for 31-bit */
294#define _SEGMENT_ENTRY_WRITE 0 /* No sw write bit for 31-bit */
295#define _SEGMENT_ENTRY_LARGE 0 /* No large pages for 31-bit */
296#define _SEGMENT_ENTRY_BITS_LARGE 0
297#define _SEGMENT_ENTRY_ORIGIN_LARGE 0
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200298
299#define _SEGMENT_ENTRY (_SEGMENT_ENTRY_PTL)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200300#define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200301
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200302/*
303 * Segment table entry encoding (I = invalid, R = read-only bit):
304 * ..R...I.....
305 * prot-none ..1...1.....
306 * read-only ..1...0.....
307 * read-write ..0...0.....
308 * empty ..0...1.....
309 */
310
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200311/* Page status table bits for virtualization */
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200312#define PGSTE_ACC_BITS 0xf0000000UL
313#define PGSTE_FP_BIT 0x08000000UL
314#define PGSTE_PCL_BIT 0x00800000UL
315#define PGSTE_HR_BIT 0x00400000UL
316#define PGSTE_HC_BIT 0x00200000UL
317#define PGSTE_GR_BIT 0x00040000UL
318#define PGSTE_GC_BIT 0x00020000UL
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200319#define PGSTE_UC_BIT 0x00008000UL /* user dirty (migration) */
320#define PGSTE_IN_BIT 0x00004000UL /* IPTE notify bit */
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200321
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200322#else /* CONFIG_64BIT */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200323
324/* Bits in the segment/region table address-space-control-element */
325#define _ASCE_ORIGIN ~0xfffUL/* segment table origin */
326#define _ASCE_PRIVATE_SPACE 0x100 /* private space control */
327#define _ASCE_ALT_EVENT 0x80 /* storage alteration event control */
328#define _ASCE_SPACE_SWITCH 0x40 /* space switch event */
329#define _ASCE_REAL_SPACE 0x20 /* real space control */
330#define _ASCE_TYPE_MASK 0x0c /* asce table type mask */
331#define _ASCE_TYPE_REGION1 0x0c /* region first table type */
332#define _ASCE_TYPE_REGION2 0x08 /* region second table type */
333#define _ASCE_TYPE_REGION3 0x04 /* region third table type */
334#define _ASCE_TYPE_SEGMENT 0x00 /* segment table type */
335#define _ASCE_TABLE_LENGTH 0x03 /* region table length */
336
337/* Bits in the region table entry */
338#define _REGION_ENTRY_ORIGIN ~0xfffUL/* region/segment table origin */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200339#define _REGION_ENTRY_PROTECT 0x200 /* region protection bit */
340#define _REGION_ENTRY_INVALID 0x20 /* invalid region table entry */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200341#define _REGION_ENTRY_TYPE_MASK 0x0c /* region/segment table type mask */
342#define _REGION_ENTRY_TYPE_R1 0x0c /* region first table type */
343#define _REGION_ENTRY_TYPE_R2 0x08 /* region second table type */
344#define _REGION_ENTRY_TYPE_R3 0x04 /* region third table type */
345#define _REGION_ENTRY_LENGTH 0x03 /* region third length */
346
347#define _REGION1_ENTRY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_LENGTH)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200348#define _REGION1_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R1 | _REGION_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200349#define _REGION2_ENTRY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_LENGTH)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200350#define _REGION2_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R2 | _REGION_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200351#define _REGION3_ENTRY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_LENGTH)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200352#define _REGION3_ENTRY_EMPTY (_REGION_ENTRY_TYPE_R3 | _REGION_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200353
Heiko Carstens18da2362012-10-08 09:18:26 +0200354#define _REGION3_ENTRY_LARGE 0x400 /* RTTE-format control, large page */
Heiko Carstens1819ed12013-02-16 11:47:27 +0100355#define _REGION3_ENTRY_RO 0x200 /* page protection bit */
Heiko Carstens18da2362012-10-08 09:18:26 +0200356
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200357/* Bits in the segment table entry */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200358#define _SEGMENT_ENTRY_BITS 0xfffffffffffffe33UL
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200359#define _SEGMENT_ENTRY_BITS_LARGE 0xfffffffffff0ff33UL
Heiko Carstensea815312013-03-21 12:50:39 +0100360#define _SEGMENT_ENTRY_ORIGIN_LARGE ~0xfffffUL /* large page address */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200361#define _SEGMENT_ENTRY_ORIGIN ~0x7ffUL/* segment table origin */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200362#define _SEGMENT_ENTRY_PROTECT 0x200 /* page protection bit */
363#define _SEGMENT_ENTRY_INVALID 0x20 /* invalid segment table entry */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200364
365#define _SEGMENT_ENTRY (0)
Martin Schwidefskye5098612013-07-23 20:57:57 +0200366#define _SEGMENT_ENTRY_EMPTY (_SEGMENT_ENTRY_INVALID)
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200367
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200368#define _SEGMENT_ENTRY_DIRTY 0x2000 /* SW segment dirty bit */
369#define _SEGMENT_ENTRY_YOUNG 0x1000 /* SW segment young bit */
370#define _SEGMENT_ENTRY_SPLIT 0x0800 /* THP splitting bit */
371#define _SEGMENT_ENTRY_LARGE 0x0400 /* STE-format control, large page */
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200372#define _SEGMENT_ENTRY_READ 0x0002 /* SW segment read bit */
373#define _SEGMENT_ENTRY_WRITE 0x0001 /* SW segment write bit */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200374
375/*
376 * Segment table entry encoding (R = read-only, I = invalid, y = young bit):
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200377 * dy..R...I...wr
378 * prot-none, clean, old 00..1...1...00
379 * prot-none, clean, young 01..1...1...00
380 * prot-none, dirty, old 10..1...1...00
381 * prot-none, dirty, young 11..1...1...00
382 * read-only, clean, old 00..1...1...01
383 * read-only, clean, young 01..1...0...01
384 * read-only, dirty, old 10..1...1...01
385 * read-only, dirty, young 11..1...0...01
386 * read-write, clean, old 00..1...1...11
387 * read-write, clean, young 01..1...0...11
388 * read-write, dirty, old 10..0...1...11
389 * read-write, dirty, young 11..0...0...11
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200390 * The segment table origin is used to distinguish empty (origin==0) from
391 * read-write, old segment table entries (origin!=0)
392 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200393
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200394#define _SEGMENT_ENTRY_SPLIT_BIT 11 /* THP splitting bit number */
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700395
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200396/* Page status table bits for virtualization */
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200397#define PGSTE_ACC_BITS 0xf000000000000000UL
398#define PGSTE_FP_BIT 0x0800000000000000UL
399#define PGSTE_PCL_BIT 0x0080000000000000UL
400#define PGSTE_HR_BIT 0x0040000000000000UL
401#define PGSTE_HC_BIT 0x0020000000000000UL
402#define PGSTE_GR_BIT 0x0004000000000000UL
403#define PGSTE_GC_BIT 0x0002000000000000UL
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200404#define PGSTE_UC_BIT 0x0000800000000000UL /* user dirty (migration) */
405#define PGSTE_IN_BIT 0x0000400000000000UL /* IPTE notify bit */
Martin Schwidefsky6c61cfe2011-06-06 14:14:42 +0200406
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200407#endif /* CONFIG_64BIT */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200408
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200409/* Guest Page State used for virtualization */
410#define _PGSTE_GPS_ZERO 0x0000000080000000UL
411#define _PGSTE_GPS_USAGE_MASK 0x0000000003000000UL
412#define _PGSTE_GPS_USAGE_STABLE 0x0000000000000000UL
413#define _PGSTE_GPS_USAGE_UNUSED 0x0000000001000000UL
414
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200415/*
416 * A user page table pointer has the space-switch-event bit, the
417 * private-space-control bit and the storage-alteration-event-control
418 * bit set. A kernel page table pointer doesn't need them.
419 */
420#define _ASCE_USER_BITS (_ASCE_SPACE_SWITCH | _ASCE_PRIVATE_SPACE | \
421 _ASCE_ALT_EVENT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423/*
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200424 * Page protection definitions.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200426#define PAGE_NONE __pgprot(_PAGE_PRESENT | _PAGE_INVALID)
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200427#define PAGE_READ __pgprot(_PAGE_PRESENT | _PAGE_READ | \
428 _PAGE_INVALID | _PAGE_PROTECT)
429#define PAGE_WRITE __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
430 _PAGE_INVALID | _PAGE_PROTECT)
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200431
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200432#define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
433 _PAGE_YOUNG | _PAGE_DIRTY)
434#define PAGE_KERNEL __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
435 _PAGE_YOUNG | _PAGE_DIRTY)
436#define PAGE_KERNEL_RO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_YOUNG | \
437 _PAGE_PROTECT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439/*
Martin Schwidefsky043d0702011-05-23 10:24:23 +0200440 * On s390 the page table entry has an invalid bit and a read-only bit.
441 * Read permission implies execute permission and write permission
442 * implies read permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 */
444 /*xwr*/
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200445#define __P000 PAGE_NONE
Martin Schwidefskye5098612013-07-23 20:57:57 +0200446#define __P001 PAGE_READ
447#define __P010 PAGE_READ
448#define __P011 PAGE_READ
449#define __P100 PAGE_READ
450#define __P101 PAGE_READ
451#define __P110 PAGE_READ
452#define __P111 PAGE_READ
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Gerald Schaefer9282ed92006-09-20 15:59:37 +0200454#define __S000 PAGE_NONE
Martin Schwidefskye5098612013-07-23 20:57:57 +0200455#define __S001 PAGE_READ
456#define __S010 PAGE_WRITE
457#define __S011 PAGE_WRITE
458#define __S100 PAGE_READ
459#define __S101 PAGE_READ
460#define __S110 PAGE_WRITE
461#define __S111 PAGE_WRITE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Gerald Schaefer106c9922013-04-29 15:07:23 -0700463/*
464 * Segment entry (large page) protection definitions.
465 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200466#define SEGMENT_NONE __pgprot(_SEGMENT_ENTRY_INVALID | \
467 _SEGMENT_ENTRY_PROTECT)
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200468#define SEGMENT_READ __pgprot(_SEGMENT_ENTRY_PROTECT | \
469 _SEGMENT_ENTRY_READ)
470#define SEGMENT_WRITE __pgprot(_SEGMENT_ENTRY_READ | \
471 _SEGMENT_ENTRY_WRITE)
Gerald Schaefer106c9922013-04-29 15:07:23 -0700472
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200473static inline int mm_has_pgste(struct mm_struct *mm)
474{
475#ifdef CONFIG_PGSTE
476 if (unlikely(mm->context.has_pgste))
477 return 1;
478#endif
479 return 0;
480}
Dominik Dingel65eef3352014-01-14 15:02:11 +0100481
Dominik Dingel2faee8f2014-10-23 12:08:38 +0200482/*
483 * In the case that a guest uses storage keys
484 * faults should no longer be backed by zero pages
485 */
486#define mm_forbids_zeropage mm_use_skey
Dominik Dingel65eef3352014-01-14 15:02:11 +0100487static inline int mm_use_skey(struct mm_struct *mm)
488{
489#ifdef CONFIG_PGSTE
490 if (mm->context.use_skey)
491 return 1;
492#endif
493 return 0;
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/*
497 * pgd/pmd/pte query functions
498 */
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200499#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800501static inline int pgd_present(pgd_t pgd) { return 1; }
502static inline int pgd_none(pgd_t pgd) { return 0; }
503static inline int pgd_bad(pgd_t pgd) { return 0; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200505static inline int pud_present(pud_t pud) { return 1; }
506static inline int pud_none(pud_t pud) { return 0; }
Heiko Carstens18da2362012-10-08 09:18:26 +0200507static inline int pud_large(pud_t pud) { return 0; }
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200508static inline int pud_bad(pud_t pud) { return 0; }
509
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200510#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100512static inline int pgd_present(pgd_t pgd)
513{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100514 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2)
515 return 1;
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100516 return (pgd_val(pgd) & _REGION_ENTRY_ORIGIN) != 0UL;
517}
518
519static inline int pgd_none(pgd_t pgd)
520{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100521 if ((pgd_val(pgd) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R2)
522 return 0;
Martin Schwidefskye5098612013-07-23 20:57:57 +0200523 return (pgd_val(pgd) & _REGION_ENTRY_INVALID) != 0UL;
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100524}
525
526static inline int pgd_bad(pgd_t pgd)
527{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100528 /*
529 * With dynamic page table levels the pgd can be a region table
530 * entry or a segment table entry. Check for the bit that are
531 * invalid for either table entry.
532 */
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100533 unsigned long mask =
Martin Schwidefskye5098612013-07-23 20:57:57 +0200534 ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID &
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100535 ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH;
536 return (pgd_val(pgd) & mask) != 0;
537}
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200538
539static inline int pud_present(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100541 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
542 return 1;
Martin Schwidefsky0d017922007-12-17 16:25:48 +0100543 return (pud_val(pud) & _REGION_ENTRY_ORIGIN) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544}
545
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200546static inline int pud_none(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100548 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) < _REGION_ENTRY_TYPE_R3)
549 return 0;
Martin Schwidefskye5098612013-07-23 20:57:57 +0200550 return (pud_val(pud) & _REGION_ENTRY_INVALID) != 0UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
Heiko Carstens18da2362012-10-08 09:18:26 +0200553static inline int pud_large(pud_t pud)
554{
555 if ((pud_val(pud) & _REGION_ENTRY_TYPE_MASK) != _REGION_ENTRY_TYPE_R3)
556 return 0;
557 return !!(pud_val(pud) & _REGION3_ENTRY_LARGE);
558}
559
Martin Schwidefsky190a1d72007-10-22 12:52:48 +0200560static inline int pud_bad(pud_t pud)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100562 /*
563 * With dynamic page table levels the pud can be a region table
564 * entry or a segment table entry. Check for the bit that are
565 * invalid for either table entry.
566 */
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100567 unsigned long mask =
Martin Schwidefskye5098612013-07-23 20:57:57 +0200568 ~_SEGMENT_ENTRY_ORIGIN & ~_REGION_ENTRY_INVALID &
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100569 ~_REGION_ENTRY_TYPE_MASK & ~_REGION_ENTRY_LENGTH;
570 return (pud_val(pud) & mask) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200573#endif /* CONFIG_64BIT */
Martin Schwidefsky3610cce2007-10-22 12:52:47 +0200574
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800575static inline int pmd_present(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200577 return pmd_val(pmd) != _SEGMENT_ENTRY_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578}
579
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800580static inline int pmd_none(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200582 return pmd_val(pmd) == _SEGMENT_ENTRY_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
Heiko Carstens378b1e72012-10-01 12:58:34 +0200585static inline int pmd_large(pmd_t pmd)
586{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200587 return (pmd_val(pmd) & _SEGMENT_ENTRY_LARGE) != 0;
Heiko Carstens378b1e72012-10-01 12:58:34 +0200588}
589
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200590static inline int pmd_pfn(pmd_t pmd)
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200591{
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200592 unsigned long origin_mask;
593
594 origin_mask = _SEGMENT_ENTRY_ORIGIN;
595 if (pmd_large(pmd))
596 origin_mask = _SEGMENT_ENTRY_ORIGIN_LARGE;
597 return (pmd_val(pmd) & origin_mask) >> PAGE_SHIFT;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200598}
599
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800600static inline int pmd_bad(pmd_t pmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200602 if (pmd_large(pmd))
603 return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS_LARGE) != 0;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200604 return (pmd_val(pmd) & ~_SEGMENT_ENTRY_BITS) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Gerald Schaefer75077af2012-10-08 16:30:15 -0700607#define __HAVE_ARCH_PMDP_SPLITTING_FLUSH
608extern void pmdp_splitting_flush(struct vm_area_struct *vma,
609 unsigned long addr, pmd_t *pmdp);
610
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700611#define __HAVE_ARCH_PMDP_SET_ACCESS_FLAGS
612extern int pmdp_set_access_flags(struct vm_area_struct *vma,
613 unsigned long address, pmd_t *pmdp,
614 pmd_t entry, int dirty);
615
616#define __HAVE_ARCH_PMDP_CLEAR_YOUNG_FLUSH
617extern int pmdp_clear_flush_young(struct vm_area_struct *vma,
618 unsigned long address, pmd_t *pmdp);
619
620#define __HAVE_ARCH_PMD_WRITE
621static inline int pmd_write(pmd_t pmd)
622{
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200623 return (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE) != 0;
624}
625
626static inline int pmd_dirty(pmd_t pmd)
627{
628 int dirty = 1;
629 if (pmd_large(pmd))
630 dirty = (pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY) != 0;
631 return dirty;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700632}
633
634static inline int pmd_young(pmd_t pmd)
635{
Martin Schwidefsky152125b2014-07-24 11:03:41 +0200636 int young = 1;
637 if (pmd_large(pmd))
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200638 young = (pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG) != 0;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200639 return young;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -0700640}
641
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800642static inline int pte_present(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200644 /* Bit pattern: (pte & 0x001) == 0x001 */
645 return (pte_val(pte) & _PAGE_PRESENT) != 0;
646}
647
648static inline int pte_none(pte_t pte)
649{
650 /* Bit pattern: pte == 0x400 */
651 return pte_val(pte) == _PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200654static inline int pte_swap(pte_t pte)
655{
656 /* Bit pattern: (pte & 0x603) == 0x402 */
657 return (pte_val(pte) & (_PAGE_INVALID | _PAGE_PROTECT |
658 _PAGE_TYPE | _PAGE_PRESENT))
659 == (_PAGE_INVALID | _PAGE_TYPE);
660}
661
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800662static inline int pte_file(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200664 /* Bit pattern: (pte & 0x601) == 0x600 */
665 return (pte_val(pte) & (_PAGE_INVALID | _PAGE_PROTECT | _PAGE_PRESENT))
666 == (_PAGE_INVALID | _PAGE_PROTECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
Nick Piggin7e675132008-04-28 02:13:00 -0700669static inline int pte_special(pte_t pte)
670{
Nick Piggina08cb622008-04-28 02:13:03 -0700671 return (pte_val(pte) & _PAGE_SPECIAL);
Nick Piggin7e675132008-04-28 02:13:00 -0700672}
673
Martin Schwidefskyba8a9222007-10-22 12:52:44 +0200674#define __HAVE_ARCH_PTE_SAME
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200675static inline int pte_same(pte_t a, pte_t b)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100676{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200677 return pte_val(a) == pte_val(b);
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100678}
679
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200680static inline pgste_t pgste_get_lock(pte_t *ptep)
681{
682 unsigned long new = 0;
683#ifdef CONFIG_PGSTE
684 unsigned long old;
685
686 preempt_disable();
687 asm(
688 " lg %0,%2\n"
689 "0: lgr %1,%0\n"
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200690 " nihh %0,0xff7f\n" /* clear PCL bit in old */
691 " oihh %1,0x0080\n" /* set PCL bit in new */
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200692 " csg %0,%1,%2\n"
693 " jl 0b\n"
694 : "=&d" (old), "=&d" (new), "=Q" (ptep[PTRS_PER_PTE])
Christian Borntraegera8f6e7f2013-06-05 09:25:34 +0200695 : "Q" (ptep[PTRS_PER_PTE]) : "cc", "memory");
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200696#endif
697 return __pgste(new);
698}
699
700static inline void pgste_set_unlock(pte_t *ptep, pgste_t pgste)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100701{
702#ifdef CONFIG_PGSTE
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200703 asm(
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200704 " nihh %1,0xff7f\n" /* clear PCL bit */
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200705 " stg %1,%0\n"
706 : "=Q" (ptep[PTRS_PER_PTE])
Christian Borntraegera8f6e7f2013-06-05 09:25:34 +0200707 : "d" (pgste_val(pgste)), "Q" (ptep[PTRS_PER_PTE])
708 : "cc", "memory");
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100709 preempt_enable();
710#endif
711}
712
Martin Schwidefskyd56c8932013-07-19 11:15:54 +0200713static inline pgste_t pgste_get(pte_t *ptep)
714{
715 unsigned long pgste = 0;
716#ifdef CONFIG_PGSTE
717 pgste = *(unsigned long *)(ptep + PTRS_PER_PTE);
718#endif
719 return __pgste(pgste);
720}
721
Christian Borntraeger3a826032013-06-05 09:22:33 +0200722static inline void pgste_set(pte_t *ptep, pgste_t pgste)
723{
724#ifdef CONFIG_PGSTE
725 *(pgste_t *)(ptep + PTRS_PER_PTE) = pgste;
726#endif
727}
728
Dominik Dingel65eef3352014-01-14 15:02:11 +0100729static inline pgste_t pgste_update_all(pte_t *ptep, pgste_t pgste,
730 struct mm_struct *mm)
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100731{
732#ifdef CONFIG_PGSTE
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200733 unsigned long address, bits, skey;
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100734
Dominik Dingel65eef3352014-01-14 15:02:11 +0100735 if (!mm_use_skey(mm) || pte_val(*ptep) & _PAGE_INVALID)
Martin Schwidefsky09b53882011-11-14 11:19:00 +0100736 return pgste;
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200737 address = pte_val(*ptep) & PAGE_MASK;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200738 skey = (unsigned long) page_get_storage_key(address);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200739 bits = skey & (_PAGE_CHANGED | _PAGE_REFERENCED);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200740 /* Transfer page changed & referenced bit to guest bits in pgste */
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200741 pgste_val(pgste) |= bits << 48; /* GR bit & GC bit */
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200742 /* Copy page access key and fetch protection bit to pgste */
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200743 pgste_val(pgste) &= ~(PGSTE_ACC_BITS | PGSTE_FP_BIT);
744 pgste_val(pgste) |= (skey & (_PAGE_ACC_BITS | _PAGE_FP_BIT)) << 56;
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100745#endif
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200746 return pgste;
747
748}
749
Dominik Dingel65eef3352014-01-14 15:02:11 +0100750static inline void pgste_set_key(pte_t *ptep, pgste_t pgste, pte_t entry,
751 struct mm_struct *mm)
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200752{
753#ifdef CONFIG_PGSTE
Heiko Carstensa43a9d92011-05-29 12:40:50 +0200754 unsigned long address;
Christian Borntraeger338679f2013-06-04 09:53:59 +0200755 unsigned long nkey;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200756
Dominik Dingel65eef3352014-01-14 15:02:11 +0100757 if (!mm_use_skey(mm) || pte_val(entry) & _PAGE_INVALID)
Martin Schwidefsky09b53882011-11-14 11:19:00 +0100758 return;
Christian Borntraeger338679f2013-06-04 09:53:59 +0200759 VM_BUG_ON(!(pte_val(*ptep) & _PAGE_INVALID));
Martin Schwidefsky09b53882011-11-14 11:19:00 +0100760 address = pte_val(entry) & PAGE_MASK;
Christian Borntraeger338679f2013-06-04 09:53:59 +0200761 /*
762 * Set page access key and fetch protection bit from pgste.
763 * The guest C/R information is still in the PGSTE, set real
764 * key C/R to 0.
765 */
Linus Torvaldsfe489bf2013-07-03 13:21:40 -0700766 nkey = (pgste_val(pgste) & (PGSTE_ACC_BITS | PGSTE_FP_BIT)) >> 56;
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200767 nkey |= (pgste_val(pgste) & (PGSTE_GR_BIT | PGSTE_GC_BIT)) >> 48;
Christian Borntraeger338679f2013-06-04 09:53:59 +0200768 page_set_storage_key(address, nkey, 0);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200769#endif
770}
771
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200772static inline pgste_t pgste_set_pte(pte_t *ptep, pgste_t pgste, pte_t entry)
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100773{
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200774 if ((pte_val(entry) & _PAGE_PRESENT) &&
775 (pte_val(entry) & _PAGE_WRITE) &&
776 !(pte_val(entry) & _PAGE_INVALID)) {
777 if (!MACHINE_HAS_ESOP) {
778 /*
779 * Without enhanced suppression-on-protection force
780 * the dirty bit on for all writable ptes.
781 */
782 pte_val(entry) |= _PAGE_DIRTY;
783 pte_val(entry) &= ~_PAGE_PROTECT;
784 }
785 if (!(pte_val(entry) & _PAGE_PROTECT))
786 /* This pte allows write access, set user-dirty */
787 pgste_val(pgste) |= PGSTE_UC_BIT;
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100788 }
789 *ptep = entry;
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200790 return pgste;
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100791}
792
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200793/**
794 * struct gmap_struct - guest address space
Martin Schwidefsky527e30b2014-04-30 16:04:25 +0200795 * @crst_list: list of all crst tables used in the guest address space
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200796 * @mm: pointer to the parent mm_struct
Martin Schwidefsky527e30b2014-04-30 16:04:25 +0200797 * @guest_to_host: radix tree with guest to host address translation
798 * @host_to_guest: radix tree with pointer to segment table entries
799 * @guest_table_lock: spinlock to protect all entries in the guest page table
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200800 * @table: pointer to the page directory
Christian Borntraeger480e5922011-09-20 17:07:28 +0200801 * @asce: address space control element for gmap page table
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200802 * @pfault_enabled: defines if pfaults are applicable for the guest
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200803 */
804struct gmap {
805 struct list_head list;
Martin Schwidefsky527e30b2014-04-30 16:04:25 +0200806 struct list_head crst_list;
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200807 struct mm_struct *mm;
Martin Schwidefsky527e30b2014-04-30 16:04:25 +0200808 struct radix_tree_root guest_to_host;
809 struct radix_tree_root host_to_guest;
810 spinlock_t guest_table_lock;
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200811 unsigned long *table;
Christian Borntraeger480e5922011-09-20 17:07:28 +0200812 unsigned long asce;
Martin Schwidefskyc6c956b2014-07-01 14:36:04 +0200813 unsigned long asce_end;
Christian Borntraeger2c70fe42013-05-17 14:41:36 +0200814 void *private;
Dominik Dingel24eb3a82013-06-17 16:25:18 +0200815 bool pfault_enabled;
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200816};
817
818/**
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200819 * struct gmap_notifier - notify function block for page invalidation
820 * @notifier_call: address of callback function
821 */
822struct gmap_notifier {
823 struct list_head list;
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200824 void (*notifier_call)(struct gmap *gmap, unsigned long gaddr);
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200825};
826
Martin Schwidefskyc6c956b2014-07-01 14:36:04 +0200827struct gmap *gmap_alloc(struct mm_struct *mm, unsigned long limit);
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200828void gmap_free(struct gmap *gmap);
829void gmap_enable(struct gmap *gmap);
830void gmap_disable(struct gmap *gmap);
831int gmap_map_segment(struct gmap *gmap, unsigned long from,
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200832 unsigned long to, unsigned long len);
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200833int gmap_unmap_segment(struct gmap *gmap, unsigned long to, unsigned long len);
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200834unsigned long __gmap_translate(struct gmap *, unsigned long gaddr);
835unsigned long gmap_translate(struct gmap *, unsigned long gaddr);
Martin Schwidefsky527e30b2014-04-30 16:04:25 +0200836int __gmap_link(struct gmap *gmap, unsigned long gaddr, unsigned long vmaddr);
837int gmap_fault(struct gmap *, unsigned long gaddr, unsigned int fault_flags);
Martin Schwidefsky6e0a0432014-04-29 09:34:41 +0200838void gmap_discard(struct gmap *, unsigned long from, unsigned long to);
839void __gmap_zap(struct gmap *, unsigned long gaddr);
Dominik Dingela0bf4f12014-03-24 14:27:58 +0100840bool gmap_test_and_clear_dirty(unsigned long address, struct gmap *);
841
Martin Schwidefskye5992f22011-07-24 10:48:20 +0200842
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200843void gmap_register_ipte_notifier(struct gmap_notifier *);
844void gmap_unregister_ipte_notifier(struct gmap_notifier *);
845int gmap_ipte_notify(struct gmap *, unsigned long start, unsigned long len);
Martin Schwidefsky9da4e382014-04-30 14:46:26 +0200846void gmap_do_ipte_notify(struct mm_struct *, unsigned long addr, pte_t *);
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200847
848static inline pgste_t pgste_ipte_notify(struct mm_struct *mm,
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +0200849 unsigned long addr,
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200850 pte_t *ptep, pgste_t pgste)
851{
852#ifdef CONFIG_PGSTE
Martin Schwidefsky0d0dafc2013-05-17 14:41:33 +0200853 if (pgste_val(pgste) & PGSTE_IN_BIT) {
854 pgste_val(pgste) &= ~PGSTE_IN_BIT;
Martin Schwidefsky9da4e382014-04-30 14:46:26 +0200855 gmap_do_ipte_notify(mm, addr, ptep);
Martin Schwidefskyd3383632013-04-17 10:53:39 +0200856 }
857#endif
858 return pgste;
859}
860
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200861/*
862 * Certain architectures need to do special things when PTEs
863 * within a page table are directly modified. Thus, the following
864 * hook is made available.
865 */
866static inline void set_pte_at(struct mm_struct *mm, unsigned long addr,
867 pte_t *ptep, pte_t entry)
868{
869 pgste_t pgste;
870
871 if (mm_has_pgste(mm)) {
872 pgste = pgste_get_lock(ptep);
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200873 pgste_val(pgste) &= ~_PGSTE_GPS_ZERO;
Dominik Dingel65eef3352014-01-14 15:02:11 +0100874 pgste_set_key(ptep, pgste, entry, mm);
Martin Schwidefsky0a61b222013-10-18 12:03:41 +0200875 pgste = pgste_set_pte(ptep, pgste, entry);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200876 pgste_set_unlock(ptep, pgste);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100877 } else {
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200878 *ptep = entry;
Martin Schwidefskyabf09be2012-11-07 13:17:37 +0100879 }
Christian Borntraeger5b7baf02008-03-25 18:47:12 +0100880}
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882/*
883 * query functions pte_write/pte_dirty/pte_young only work if
884 * pte_present() is true. Undefined behaviour if not..
885 */
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800886static inline int pte_write(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200888 return (pte_val(pte) & _PAGE_WRITE) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800891static inline int pte_dirty(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200893 return (pte_val(pte) & _PAGE_DIRTY) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800896static inline int pte_young(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200898 return (pte_val(pte) & _PAGE_YOUNG) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Konstantin Weitzb31288f2013-04-17 17:36:29 +0200901#define __HAVE_ARCH_PTE_UNUSED
902static inline int pte_unused(pte_t pte)
903{
904 return pte_val(pte) & _PAGE_UNUSED;
905}
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907/*
908 * pgd/pmd/pte modification functions
909 */
910
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200911static inline void pgd_clear(pgd_t *pgd)
Martin Schwidefsky5a216a22008-02-09 18:24:36 +0100912{
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200913#ifdef CONFIG_64BIT
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100914 if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
915 pgd_val(*pgd) = _REGION2_ENTRY_EMPTY;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200916#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917}
918
Martin Schwidefsky6252d702008-02-09 18:24:37 +0100919static inline void pud_clear(pud_t *pud)
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100920{
Heiko Carstensf4815ac2012-05-23 16:24:51 +0200921#ifdef CONFIG_64BIT
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200922 if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
923 pud_val(*pud) = _REGION3_ENTRY_EMPTY;
924#endif
Gerald Schaeferc1821c22007-02-05 21:18:17 +0100925}
Martin Schwidefsky146e4b32008-02-09 18:24:35 +0100926
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +0200927static inline void pmd_clear(pmd_t *pmdp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200929 pmd_val(*pmdp) = _SEGMENT_ENTRY_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800932static inline void pte_clear(struct mm_struct *mm, unsigned long addr, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200934 pte_val(*ptep) = _PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
937/*
938 * The following pte modification functions only work if
939 * pte_present() is true. Undefined behaviour if not..
940 */
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800941static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Nick Piggin138c9022008-07-08 11:31:06 +0200943 pte_val(pte) &= _PAGE_CHG_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 pte_val(pte) |= pgprot_val(newprot);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200945 /*
946 * newprot for PAGE_NONE, PAGE_READ and PAGE_WRITE has the
947 * invalid bit set, clear it again for readable, young pages
948 */
949 if ((pte_val(pte) & _PAGE_YOUNG) && (pte_val(pte) & _PAGE_READ))
950 pte_val(pte) &= ~_PAGE_INVALID;
951 /*
952 * newprot for PAGE_READ and PAGE_WRITE has the page protection
953 * bit set, clear it again for writable, dirty pages
954 */
Martin Schwidefskye5098612013-07-23 20:57:57 +0200955 if ((pte_val(pte) & _PAGE_DIRTY) && (pte_val(pte) & _PAGE_WRITE))
956 pte_val(pte) &= ~_PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return pte;
958}
959
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800960static inline pte_t pte_wrprotect(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200962 pte_val(pte) &= ~_PAGE_WRITE;
963 pte_val(pte) |= _PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return pte;
965}
966
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800967static inline pte_t pte_mkwrite(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200969 pte_val(pte) |= _PAGE_WRITE;
970 if (pte_val(pte) & _PAGE_DIRTY)
971 pte_val(pte) &= ~_PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return pte;
973}
974
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800975static inline pte_t pte_mkclean(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200977 pte_val(pte) &= ~_PAGE_DIRTY;
978 pte_val(pte) |= _PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return pte;
980}
981
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800982static inline pte_t pte_mkdirty(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200984 pte_val(pte) |= _PAGE_DIRTY;
985 if (pte_val(pte) & _PAGE_WRITE)
986 pte_val(pte) &= ~_PAGE_PROTECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return pte;
988}
989
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800990static inline pte_t pte_mkold(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Martin Schwidefskye5098612013-07-23 20:57:57 +0200992 pte_val(pte) &= ~_PAGE_YOUNG;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200993 pte_val(pte) |= _PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return pte;
995}
996
Adrian Bunk4448aaf2005-11-08 21:34:42 -0800997static inline pte_t pte_mkyoung(pte_t pte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Martin Schwidefsky0944fe32013-07-23 22:11:42 +0200999 pte_val(pte) |= _PAGE_YOUNG;
1000 if (pte_val(pte) & _PAGE_READ)
1001 pte_val(pte) &= ~_PAGE_INVALID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 return pte;
1003}
1004
Nick Piggin7e675132008-04-28 02:13:00 -07001005static inline pte_t pte_mkspecial(pte_t pte)
1006{
Nick Piggina08cb622008-04-28 02:13:03 -07001007 pte_val(pte) |= _PAGE_SPECIAL;
Nick Piggin7e675132008-04-28 02:13:00 -07001008 return pte;
1009}
1010
Heiko Carstens84afdce2010-10-25 16:10:36 +02001011#ifdef CONFIG_HUGETLB_PAGE
1012static inline pte_t pte_mkhuge(pte_t pte)
1013{
Martin Schwidefskye5098612013-07-23 20:57:57 +02001014 pte_val(pte) |= _PAGE_LARGE;
Heiko Carstens84afdce2010-10-25 16:10:36 +02001015 return pte;
1016}
1017#endif
1018
Gerald Schaefer9282ed92006-09-20 15:59:37 +02001019static inline void __ptep_ipte(unsigned long address, pte_t *ptep)
1020{
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001021 unsigned long pto = (unsigned long) ptep;
1022
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001023#ifndef CONFIG_64BIT
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001024 /* pto in ESA mode must point to the start of the segment table */
1025 pto &= 0x7ffffc00;
Gerald Schaefer9282ed92006-09-20 15:59:37 +02001026#endif
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001027 /* Invalidation + global TLB flush for the pte */
1028 asm volatile(
1029 " ipte %2,%3"
1030 : "=m" (*ptep) : "m" (*ptep), "a" (pto), "a" (address));
1031}
1032
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001033static inline void __ptep_ipte_local(unsigned long address, pte_t *ptep)
1034{
1035 unsigned long pto = (unsigned long) ptep;
1036
1037#ifndef CONFIG_64BIT
1038 /* pto in ESA mode must point to the start of the segment table */
1039 pto &= 0x7ffffc00;
1040#endif
1041 /* Invalidation + local TLB flush for the pte */
1042 asm volatile(
1043 " .insn rrf,0xb2210000,%2,%3,0,1"
1044 : "=m" (*ptep) : "m" (*ptep), "a" (pto), "a" (address));
1045}
1046
Heiko Carstenscfb0b242014-09-23 21:29:20 +02001047static inline void __ptep_ipte_range(unsigned long address, int nr, pte_t *ptep)
1048{
1049 unsigned long pto = (unsigned long) ptep;
1050
1051#ifndef CONFIG_64BIT
1052 /* pto in ESA mode must point to the start of the segment table */
1053 pto &= 0x7ffffc00;
1054#endif
1055 /* Invalidate a range of ptes + global TLB flush of the ptes */
1056 do {
1057 asm volatile(
1058 " .insn rrf,0xb2210000,%2,%0,%1,0"
1059 : "+a" (address), "+a" (nr) : "a" (pto) : "memory");
1060 } while (nr != 255);
1061}
1062
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001063static inline void ptep_flush_direct(struct mm_struct *mm,
1064 unsigned long address, pte_t *ptep)
1065{
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001066 int active, count;
1067
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001068 if (pte_val(*ptep) & _PAGE_INVALID)
1069 return;
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001070 active = (mm == current->active_mm) ? 1 : 0;
1071 count = atomic_add_return(0x10000, &mm->context.attach_count);
1072 if (MACHINE_HAS_TLB_LC && (count & 0xffff) <= active &&
1073 cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id())))
1074 __ptep_ipte_local(address, ptep);
1075 else
1076 __ptep_ipte(address, ptep);
1077 atomic_sub(0x10000, &mm->context.attach_count);
Gerald Schaefer9282ed92006-09-20 15:59:37 +02001078}
1079
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001080static inline void ptep_flush_lazy(struct mm_struct *mm,
1081 unsigned long address, pte_t *ptep)
1082{
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001083 int active, count;
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001084
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001085 if (pte_val(*ptep) & _PAGE_INVALID)
1086 return;
1087 active = (mm == current->active_mm) ? 1 : 0;
1088 count = atomic_add_return(0x10000, &mm->context.attach_count);
1089 if ((count & 0xffff) <= active) {
1090 pte_val(*ptep) |= _PAGE_INVALID;
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001091 mm->context.flush_mm = 1;
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001092 } else
1093 __ptep_ipte(address, ptep);
1094 atomic_sub(0x10000, &mm->context.attach_count);
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001095}
1096
Martin Schwidefsky0a61b222013-10-18 12:03:41 +02001097/*
1098 * Get (and clear) the user dirty bit for a pte.
1099 */
1100static inline int ptep_test_and_clear_user_dirty(struct mm_struct *mm,
1101 unsigned long addr,
1102 pte_t *ptep)
1103{
1104 pgste_t pgste;
1105 pte_t pte;
1106 int dirty;
1107
1108 if (!mm_has_pgste(mm))
1109 return 0;
1110 pgste = pgste_get_lock(ptep);
1111 dirty = !!(pgste_val(pgste) & PGSTE_UC_BIT);
1112 pgste_val(pgste) &= ~PGSTE_UC_BIT;
1113 pte = *ptep;
1114 if (dirty && (pte_val(pte) & _PAGE_PRESENT)) {
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001115 pgste = pgste_ipte_notify(mm, addr, ptep, pgste);
Martin Schwidefsky0a61b222013-10-18 12:03:41 +02001116 __ptep_ipte(addr, ptep);
1117 if (MACHINE_HAS_ESOP || !(pte_val(pte) & _PAGE_WRITE))
1118 pte_val(pte) |= _PAGE_PROTECT;
1119 else
1120 pte_val(pte) |= _PAGE_INVALID;
1121 *ptep = pte;
1122 }
1123 pgste_set_unlock(ptep, pgste);
1124 return dirty;
1125}
1126
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001127#define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
1128static inline int ptep_test_and_clear_young(struct vm_area_struct *vma,
1129 unsigned long addr, pte_t *ptep)
1130{
1131 pgste_t pgste;
Christian Borntraeger3e03d4c2014-08-28 21:21:41 +02001132 pte_t pte, oldpte;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001133 int young;
1134
1135 if (mm_has_pgste(vma->vm_mm)) {
1136 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001137 pgste = pgste_ipte_notify(vma->vm_mm, addr, ptep, pgste);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001138 }
1139
Christian Borntraeger3e03d4c2014-08-28 21:21:41 +02001140 oldpte = pte = *ptep;
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001141 ptep_flush_direct(vma->vm_mm, addr, ptep);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001142 young = pte_young(pte);
1143 pte = pte_mkold(pte);
1144
1145 if (mm_has_pgste(vma->vm_mm)) {
Christian Borntraeger3e03d4c2014-08-28 21:21:41 +02001146 pgste = pgste_update_all(&oldpte, pgste, vma->vm_mm);
Martin Schwidefsky0a61b222013-10-18 12:03:41 +02001147 pgste = pgste_set_pte(ptep, pgste, pte);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001148 pgste_set_unlock(ptep, pgste);
1149 } else
1150 *ptep = pte;
1151
1152 return young;
1153}
1154
1155#define __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
1156static inline int ptep_clear_flush_young(struct vm_area_struct *vma,
1157 unsigned long address, pte_t *ptep)
1158{
1159 return ptep_test_and_clear_young(vma, address, ptep);
1160}
1161
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001162/*
1163 * This is hard to understand. ptep_get_and_clear and ptep_clear_flush
1164 * both clear the TLB for the unmapped pte. The reason is that
1165 * ptep_get_and_clear is used in common code (e.g. change_pte_range)
1166 * to modify an active pte. The sequence is
1167 * 1) ptep_get_and_clear
1168 * 2) set_pte_at
1169 * 3) flush_tlb_range
1170 * On s390 the tlb needs to get flushed with the modification of the pte
1171 * if the pte is active. The only way how this can be implemented is to
1172 * have ptep_get_and_clear do the tlb flush. In exchange flush_tlb_range
1173 * is a nop.
1174 */
1175#define __HAVE_ARCH_PTEP_GET_AND_CLEAR
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001176static inline pte_t ptep_get_and_clear(struct mm_struct *mm,
1177 unsigned long address, pte_t *ptep)
1178{
1179 pgste_t pgste;
1180 pte_t pte;
1181
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001182 if (mm_has_pgste(mm)) {
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001183 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001184 pgste = pgste_ipte_notify(mm, address, ptep, pgste);
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001185 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001186
1187 pte = *ptep;
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001188 ptep_flush_lazy(mm, address, ptep);
Martin Schwidefskye5098612013-07-23 20:57:57 +02001189 pte_val(*ptep) = _PAGE_INVALID;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001190
1191 if (mm_has_pgste(mm)) {
Dominik Dingel65eef3352014-01-14 15:02:11 +01001192 pgste = pgste_update_all(&pte, pgste, mm);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001193 pgste_set_unlock(ptep, pgste);
1194 }
1195 return pte;
1196}
1197
1198#define __HAVE_ARCH_PTEP_MODIFY_PROT_TRANSACTION
1199static inline pte_t ptep_modify_prot_start(struct mm_struct *mm,
1200 unsigned long address,
1201 pte_t *ptep)
1202{
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001203 pgste_t pgste;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001204 pte_t pte;
1205
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001206 if (mm_has_pgste(mm)) {
1207 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001208 pgste_ipte_notify(mm, address, ptep, pgste);
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001209 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001210
1211 pte = *ptep;
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001212 ptep_flush_lazy(mm, address, ptep);
Christian Borntraegerb56433c2013-05-27 16:19:55 +02001213
Christian Borntraeger3a826032013-06-05 09:22:33 +02001214 if (mm_has_pgste(mm)) {
Dominik Dingel65eef3352014-01-14 15:02:11 +01001215 pgste = pgste_update_all(&pte, pgste, mm);
Christian Borntraeger3a826032013-06-05 09:22:33 +02001216 pgste_set(ptep, pgste);
1217 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001218 return pte;
1219}
1220
1221static inline void ptep_modify_prot_commit(struct mm_struct *mm,
1222 unsigned long address,
1223 pte_t *ptep, pte_t pte)
1224{
Christian Borntraegerb56433c2013-05-27 16:19:55 +02001225 pgste_t pgste;
1226
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001227 if (mm_has_pgste(mm)) {
Martin Schwidefskyd56c8932013-07-19 11:15:54 +02001228 pgste = pgste_get(ptep);
Dominik Dingel65eef3352014-01-14 15:02:11 +01001229 pgste_set_key(ptep, pgste, pte, mm);
Martin Schwidefsky0a61b222013-10-18 12:03:41 +02001230 pgste = pgste_set_pte(ptep, pgste, pte);
Christian Borntraegerb56433c2013-05-27 16:19:55 +02001231 pgste_set_unlock(ptep, pgste);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001232 } else
1233 *ptep = pte;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001234}
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001235
1236#define __HAVE_ARCH_PTEP_CLEAR_FLUSH
Martin Schwidefskyf0e47c22007-07-17 04:03:03 -07001237static inline pte_t ptep_clear_flush(struct vm_area_struct *vma,
1238 unsigned long address, pte_t *ptep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001240 pgste_t pgste;
1241 pte_t pte;
1242
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001243 if (mm_has_pgste(vma->vm_mm)) {
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001244 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001245 pgste = pgste_ipte_notify(vma->vm_mm, address, ptep, pgste);
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001246 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001247
1248 pte = *ptep;
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001249 ptep_flush_direct(vma->vm_mm, address, ptep);
Martin Schwidefskye5098612013-07-23 20:57:57 +02001250 pte_val(*ptep) = _PAGE_INVALID;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001251
1252 if (mm_has_pgste(vma->vm_mm)) {
Konstantin Weitzb31288f2013-04-17 17:36:29 +02001253 if ((pgste_val(pgste) & _PGSTE_GPS_USAGE_MASK) ==
1254 _PGSTE_GPS_USAGE_UNUSED)
1255 pte_val(pte) |= _PAGE_UNUSED;
Dominik Dingel65eef3352014-01-14 15:02:11 +01001256 pgste = pgste_update_all(&pte, pgste, vma->vm_mm);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001257 pgste_set_unlock(ptep, pgste);
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return pte;
1260}
1261
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001262/*
1263 * The batched pte unmap code uses ptep_get_and_clear_full to clear the
1264 * ptes. Here an optimization is possible. tlb_gather_mmu flushes all
1265 * tlbs of an mm if it can guarantee that the ptes of the mm_struct
1266 * cannot be accessed while the batched unmap is running. In this case
1267 * full==1 and a simple pte_clear is enough. See tlb.h.
1268 */
1269#define __HAVE_ARCH_PTEP_GET_AND_CLEAR_FULL
1270static inline pte_t ptep_get_and_clear_full(struct mm_struct *mm,
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001271 unsigned long address,
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001272 pte_t *ptep, int full)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001274 pgste_t pgste;
1275 pte_t pte;
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001276
Martin Schwidefskya055f662013-07-19 10:31:55 +02001277 if (!full && mm_has_pgste(mm)) {
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001278 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001279 pgste = pgste_ipte_notify(mm, address, ptep, pgste);
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001280 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001281
1282 pte = *ptep;
1283 if (!full)
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001284 ptep_flush_lazy(mm, address, ptep);
Martin Schwidefskye5098612013-07-23 20:57:57 +02001285 pte_val(*ptep) = _PAGE_INVALID;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001286
Martin Schwidefskya055f662013-07-19 10:31:55 +02001287 if (!full && mm_has_pgste(mm)) {
Dominik Dingel65eef3352014-01-14 15:02:11 +01001288 pgste = pgste_update_all(&pte, pgste, mm);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001289 pgste_set_unlock(ptep, pgste);
1290 }
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001291 return pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001294#define __HAVE_ARCH_PTEP_SET_WRPROTECT
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001295static inline pte_t ptep_set_wrprotect(struct mm_struct *mm,
1296 unsigned long address, pte_t *ptep)
1297{
1298 pgste_t pgste;
1299 pte_t pte = *ptep;
1300
1301 if (pte_write(pte)) {
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001302 if (mm_has_pgste(mm)) {
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001303 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001304 pgste = pgste_ipte_notify(mm, address, ptep, pgste);
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001305 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001306
Martin Schwidefsky5c474a12013-08-16 13:31:40 +02001307 ptep_flush_lazy(mm, address, ptep);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001308 pte = pte_wrprotect(pte);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001309
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001310 if (mm_has_pgste(mm)) {
Martin Schwidefsky0a61b222013-10-18 12:03:41 +02001311 pgste = pgste_set_pte(ptep, pgste, pte);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001312 pgste_set_unlock(ptep, pgste);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001313 } else
1314 *ptep = pte;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001315 }
1316 return pte;
1317}
Martin Schwidefskyba8a9222007-10-22 12:52:44 +02001318
1319#define __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001320static inline int ptep_set_access_flags(struct vm_area_struct *vma,
1321 unsigned long address, pte_t *ptep,
1322 pte_t entry, int dirty)
1323{
1324 pgste_t pgste;
1325
1326 if (pte_same(*ptep, entry))
1327 return 0;
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001328 if (mm_has_pgste(vma->vm_mm)) {
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001329 pgste = pgste_get_lock(ptep);
Martin Schwidefsky55dbbdd2014-04-30 14:44:44 +02001330 pgste = pgste_ipte_notify(vma->vm_mm, address, ptep, pgste);
Martin Schwidefskyd3383632013-04-17 10:53:39 +02001331 }
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001332
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001333 ptep_flush_direct(vma->vm_mm, address, ptep);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001334
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001335 if (mm_has_pgste(vma->vm_mm)) {
Christian Borntraeger19514972014-08-28 23:44:57 +02001336 pgste_set_key(ptep, pgste, entry, vma->vm_mm);
Martin Schwidefsky0a61b222013-10-18 12:03:41 +02001337 pgste = pgste_set_pte(ptep, pgste, entry);
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001338 pgste_set_unlock(ptep, pgste);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001339 } else
1340 *ptep = entry;
Martin Schwidefskyb2fa47e2011-05-23 10:24:40 +02001341 return 1;
1342}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 * Conversion functions: convert a page and protection to a page entry,
1346 * and a page entry and page directory to the page they refer to.
1347 */
1348static inline pte_t mk_pte_phys(unsigned long physpage, pgprot_t pgprot)
1349{
1350 pte_t __pte;
1351 pte_val(__pte) = physpage + pgprot_val(pgprot);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001352 return pte_mkyoung(__pte);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Heiko Carstens2dcea572006-09-29 01:58:41 -07001355static inline pte_t mk_pte(struct page *page, pgprot_t pgprot)
1356{
Heiko Carstens0b2b6e12006-10-04 20:02:23 +02001357 unsigned long physpage = page_to_phys(page);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001358 pte_t __pte = mk_pte_phys(physpage, pgprot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Martin Schwidefskye5098612013-07-23 20:57:57 +02001360 if (pte_write(__pte) && PageDirty(page))
1361 __pte = pte_mkdirty(__pte);
Martin Schwidefskyabf09be2012-11-07 13:17:37 +01001362 return __pte;
Heiko Carstens2dcea572006-09-29 01:58:41 -07001363}
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365#define pgd_index(address) (((address) >> PGDIR_SHIFT) & (PTRS_PER_PGD-1))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001366#define pud_index(address) (((address) >> PUD_SHIFT) & (PTRS_PER_PUD-1))
1367#define pmd_index(address) (((address) >> PMD_SHIFT) & (PTRS_PER_PMD-1))
1368#define pte_index(address) (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE-1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001370#define pgd_offset(mm, address) ((mm)->pgd + pgd_index(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371#define pgd_offset_k(address) pgd_offset(&init_mm, address)
1372
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001373#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001375#define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN)
1376#define pud_deref(pmd) ({ BUG(); 0UL; })
1377#define pgd_deref(pmd) ({ BUG(); 0UL; })
1378
1379#define pud_offset(pgd, address) ((pud_t *) pgd)
1380#define pmd_offset(pud, address) ((pmd_t *) pud + pmd_index(address))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001382#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001384#define pmd_deref(pmd) (pmd_val(pmd) & _SEGMENT_ENTRY_ORIGIN)
1385#define pud_deref(pud) (pud_val(pud) & _REGION_ENTRY_ORIGIN)
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001386#define pgd_deref(pgd) (pgd_val(pgd) & _REGION_ENTRY_ORIGIN)
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001387
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001388static inline pud_t *pud_offset(pgd_t *pgd, unsigned long address)
1389{
Martin Schwidefsky6252d702008-02-09 18:24:37 +01001390 pud_t *pud = (pud_t *) pgd;
1391 if ((pgd_val(*pgd) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R2)
1392 pud = (pud_t *) pgd_deref(*pgd);
Martin Schwidefsky5a216a22008-02-09 18:24:36 +01001393 return pud + pud_index(address);
1394}
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001395
1396static inline pmd_t *pmd_offset(pud_t *pud, unsigned long address)
1397{
Martin Schwidefsky6252d702008-02-09 18:24:37 +01001398 pmd_t *pmd = (pmd_t *) pud;
1399 if ((pud_val(*pud) & _REGION_ENTRY_TYPE_MASK) == _REGION_ENTRY_TYPE_R3)
1400 pmd = (pmd_t *) pud_deref(*pud);
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001401 return pmd + pmd_index(address);
1402}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001404#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001406#define pfn_pte(pfn,pgprot) mk_pte_phys(__pa((pfn) << PAGE_SHIFT),(pgprot))
1407#define pte_pfn(x) (pte_val(x) >> PAGE_SHIFT)
1408#define pte_page(x) pfn_to_page(pte_pfn(x))
1409
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001410#define pmd_page(pmd) pfn_to_page(pmd_pfn(pmd))
Martin Schwidefsky190a1d72007-10-22 12:52:48 +02001411
1412/* Find an entry in the lowest level page table.. */
1413#define pte_offset(pmd, addr) ((pte_t *) pmd_deref(*(pmd)) + pte_index(addr))
1414#define pte_offset_kernel(pmd, address) pte_offset(pmd,address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415#define pte_offset_map(pmd, address) pte_offset_kernel(pmd, address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416#define pte_unmap(pte) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Gerald Schaefer106c9922013-04-29 15:07:23 -07001418#if defined(CONFIG_TRANSPARENT_HUGEPAGE) || defined(CONFIG_HUGETLB_PAGE)
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001419static inline unsigned long massage_pgprot_pmd(pgprot_t pgprot)
1420{
Gerald Schaeferd8e7a332012-10-25 17:42:50 +02001421 /*
Martin Schwidefskye5098612013-07-23 20:57:57 +02001422 * pgprot is PAGE_NONE, PAGE_READ, or PAGE_WRITE (see __Pxxx / __Sxxx)
Gerald Schaeferd8e7a332012-10-25 17:42:50 +02001423 * Convert to segment table entry format.
1424 */
1425 if (pgprot_val(pgprot) == pgprot_val(PAGE_NONE))
1426 return pgprot_val(SEGMENT_NONE);
Martin Schwidefskye5098612013-07-23 20:57:57 +02001427 if (pgprot_val(pgprot) == pgprot_val(PAGE_READ))
1428 return pgprot_val(SEGMENT_READ);
1429 return pgprot_val(SEGMENT_WRITE);
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001430}
1431
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001432static inline pmd_t pmd_wrprotect(pmd_t pmd)
1433{
1434 pmd_val(pmd) &= ~_SEGMENT_ENTRY_WRITE;
1435 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
1436 return pmd;
1437}
1438
1439static inline pmd_t pmd_mkwrite(pmd_t pmd)
1440{
1441 pmd_val(pmd) |= _SEGMENT_ENTRY_WRITE;
1442 if (pmd_large(pmd) && !(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY))
1443 return pmd;
1444 pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT;
1445 return pmd;
1446}
1447
1448static inline pmd_t pmd_mkclean(pmd_t pmd)
1449{
1450 if (pmd_large(pmd)) {
1451 pmd_val(pmd) &= ~_SEGMENT_ENTRY_DIRTY;
1452 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
1453 }
1454 return pmd;
1455}
1456
1457static inline pmd_t pmd_mkdirty(pmd_t pmd)
1458{
1459 if (pmd_large(pmd)) {
1460 pmd_val(pmd) |= _SEGMENT_ENTRY_DIRTY;
1461 if (pmd_val(pmd) & _SEGMENT_ENTRY_WRITE)
1462 pmd_val(pmd) &= ~_SEGMENT_ENTRY_PROTECT;
1463 }
1464 return pmd;
1465}
1466
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001467static inline pmd_t pmd_mkyoung(pmd_t pmd)
1468{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001469 if (pmd_large(pmd)) {
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001470 pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG;
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001471 if (pmd_val(pmd) & _SEGMENT_ENTRY_READ)
1472 pmd_val(pmd) &= ~_SEGMENT_ENTRY_INVALID;
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001473 }
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001474 return pmd;
1475}
1476
1477static inline pmd_t pmd_mkold(pmd_t pmd)
1478{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001479 if (pmd_large(pmd)) {
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001480 pmd_val(pmd) &= ~_SEGMENT_ENTRY_YOUNG;
1481 pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID;
1482 }
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001483 return pmd;
1484}
1485
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001486static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot)
1487{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001488 if (pmd_large(pmd)) {
1489 pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN_LARGE |
1490 _SEGMENT_ENTRY_DIRTY | _SEGMENT_ENTRY_YOUNG |
1491 _SEGMENT_ENTRY_LARGE | _SEGMENT_ENTRY_SPLIT;
1492 pmd_val(pmd) |= massage_pgprot_pmd(newprot);
1493 if (!(pmd_val(pmd) & _SEGMENT_ENTRY_DIRTY))
1494 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
1495 if (!(pmd_val(pmd) & _SEGMENT_ENTRY_YOUNG))
1496 pmd_val(pmd) |= _SEGMENT_ENTRY_INVALID;
1497 return pmd;
1498 }
1499 pmd_val(pmd) &= _SEGMENT_ENTRY_ORIGIN;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001500 pmd_val(pmd) |= massage_pgprot_pmd(newprot);
1501 return pmd;
1502}
1503
Gerald Schaefer106c9922013-04-29 15:07:23 -07001504static inline pmd_t mk_pmd_phys(unsigned long physpage, pgprot_t pgprot)
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001505{
Gerald Schaefer106c9922013-04-29 15:07:23 -07001506 pmd_t __pmd;
1507 pmd_val(__pmd) = physpage + massage_pgprot_pmd(pgprot);
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001508 return __pmd;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001509}
1510
Gerald Schaefer106c9922013-04-29 15:07:23 -07001511#endif /* CONFIG_TRANSPARENT_HUGEPAGE || CONFIG_HUGETLB_PAGE */
1512
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001513static inline void __pmdp_csp(pmd_t *pmdp)
1514{
1515 register unsigned long reg2 asm("2") = pmd_val(*pmdp);
1516 register unsigned long reg3 asm("3") = pmd_val(*pmdp) |
1517 _SEGMENT_ENTRY_INVALID;
1518 register unsigned long reg4 asm("4") = ((unsigned long) pmdp) + 5;
1519
1520 asm volatile(
1521 " csp %1,%3"
1522 : "=m" (*pmdp)
1523 : "d" (reg2), "d" (reg3), "d" (reg4), "m" (*pmdp) : "cc");
1524}
1525
1526static inline void __pmdp_idte(unsigned long address, pmd_t *pmdp)
1527{
1528 unsigned long sto;
1529
1530 sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t);
1531 asm volatile(
1532 " .insn rrf,0xb98e0000,%2,%3,0,0"
1533 : "=m" (*pmdp)
1534 : "m" (*pmdp), "a" (sto), "a" ((address & HPAGE_MASK))
1535 : "cc" );
1536}
1537
1538static inline void __pmdp_idte_local(unsigned long address, pmd_t *pmdp)
1539{
1540 unsigned long sto;
1541
1542 sto = (unsigned long) pmdp - pmd_index(address) * sizeof(pmd_t);
1543 asm volatile(
1544 " .insn rrf,0xb98e0000,%2,%3,0,1"
1545 : "=m" (*pmdp)
1546 : "m" (*pmdp), "a" (sto), "a" ((address & HPAGE_MASK))
1547 : "cc" );
1548}
1549
1550static inline void pmdp_flush_direct(struct mm_struct *mm,
1551 unsigned long address, pmd_t *pmdp)
1552{
1553 int active, count;
1554
1555 if (pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID)
1556 return;
1557 if (!MACHINE_HAS_IDTE) {
1558 __pmdp_csp(pmdp);
1559 return;
1560 }
1561 active = (mm == current->active_mm) ? 1 : 0;
1562 count = atomic_add_return(0x10000, &mm->context.attach_count);
1563 if (MACHINE_HAS_TLB_LC && (count & 0xffff) <= active &&
1564 cpumask_equal(mm_cpumask(mm), cpumask_of(smp_processor_id())))
1565 __pmdp_idte_local(address, pmdp);
1566 else
1567 __pmdp_idte(address, pmdp);
1568 atomic_sub(0x10000, &mm->context.attach_count);
1569}
1570
Martin Schwidefsky3eabaee2013-07-26 15:04:02 +02001571static inline void pmdp_flush_lazy(struct mm_struct *mm,
1572 unsigned long address, pmd_t *pmdp)
1573{
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001574 int active, count;
Martin Schwidefsky3eabaee2013-07-26 15:04:02 +02001575
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001576 if (pmd_val(*pmdp) & _SEGMENT_ENTRY_INVALID)
1577 return;
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001578 active = (mm == current->active_mm) ? 1 : 0;
1579 count = atomic_add_return(0x10000, &mm->context.attach_count);
1580 if ((count & 0xffff) <= active) {
1581 pmd_val(*pmdp) |= _SEGMENT_ENTRY_INVALID;
Martin Schwidefsky3eabaee2013-07-26 15:04:02 +02001582 mm->context.flush_mm = 1;
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001583 } else if (MACHINE_HAS_IDTE)
1584 __pmdp_idte(address, pmdp);
1585 else
1586 __pmdp_csp(pmdp);
Martin Schwidefsky53e857f2012-09-10 13:00:09 +02001587 atomic_sub(0x10000, &mm->context.attach_count);
Martin Schwidefsky3eabaee2013-07-26 15:04:02 +02001588}
1589
Gerald Schaefer106c9922013-04-29 15:07:23 -07001590#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1591
1592#define __HAVE_ARCH_PGTABLE_DEPOSIT
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07001593extern void pgtable_trans_huge_deposit(struct mm_struct *mm, pmd_t *pmdp,
1594 pgtable_t pgtable);
Gerald Schaefer106c9922013-04-29 15:07:23 -07001595
1596#define __HAVE_ARCH_PGTABLE_WITHDRAW
Aneesh Kumar K.V6b0b50b2013-06-05 17:14:02 -07001597extern pgtable_t pgtable_trans_huge_withdraw(struct mm_struct *mm, pmd_t *pmdp);
Gerald Schaefer106c9922013-04-29 15:07:23 -07001598
1599static inline int pmd_trans_splitting(pmd_t pmd)
1600{
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001601 return (pmd_val(pmd) & _SEGMENT_ENTRY_LARGE) &&
1602 (pmd_val(pmd) & _SEGMENT_ENTRY_SPLIT);
Gerald Schaefer106c9922013-04-29 15:07:23 -07001603}
1604
1605static inline void set_pmd_at(struct mm_struct *mm, unsigned long addr,
1606 pmd_t *pmdp, pmd_t entry)
1607{
Gerald Schaefer106c9922013-04-29 15:07:23 -07001608 *pmdp = entry;
1609}
1610
1611static inline pmd_t pmd_mkhuge(pmd_t pmd)
1612{
1613 pmd_val(pmd) |= _SEGMENT_ENTRY_LARGE;
Martin Schwidefsky152125b2014-07-24 11:03:41 +02001614 pmd_val(pmd) |= _SEGMENT_ENTRY_YOUNG;
1615 pmd_val(pmd) |= _SEGMENT_ENTRY_PROTECT;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001616 return pmd;
1617}
1618
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001619#define __HAVE_ARCH_PMDP_TEST_AND_CLEAR_YOUNG
1620static inline int pmdp_test_and_clear_young(struct vm_area_struct *vma,
1621 unsigned long address, pmd_t *pmdp)
1622{
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001623 pmd_t pmd;
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001624
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001625 pmd = *pmdp;
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001626 pmdp_flush_direct(vma->vm_mm, address, pmdp);
Martin Schwidefsky0944fe32013-07-23 22:11:42 +02001627 *pmdp = pmd_mkold(pmd);
1628 return pmd_young(pmd);
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001629}
1630
1631#define __HAVE_ARCH_PMDP_GET_AND_CLEAR
1632static inline pmd_t pmdp_get_and_clear(struct mm_struct *mm,
1633 unsigned long address, pmd_t *pmdp)
1634{
1635 pmd_t pmd = *pmdp;
1636
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001637 pmdp_flush_direct(mm, address, pmdp);
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001638 pmd_clear(pmdp);
1639 return pmd;
1640}
1641
1642#define __HAVE_ARCH_PMDP_CLEAR_FLUSH
1643static inline pmd_t pmdp_clear_flush(struct vm_area_struct *vma,
1644 unsigned long address, pmd_t *pmdp)
1645{
1646 return pmdp_get_and_clear(vma->vm_mm, address, pmdp);
1647}
1648
1649#define __HAVE_ARCH_PMDP_INVALIDATE
1650static inline void pmdp_invalidate(struct vm_area_struct *vma,
1651 unsigned long address, pmd_t *pmdp)
1652{
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001653 pmdp_flush_direct(vma->vm_mm, address, pmdp);
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001654}
1655
Gerald Schaeferbe328652013-01-21 16:48:07 +01001656#define __HAVE_ARCH_PMDP_SET_WRPROTECT
1657static inline void pmdp_set_wrprotect(struct mm_struct *mm,
1658 unsigned long address, pmd_t *pmdp)
1659{
1660 pmd_t pmd = *pmdp;
1661
1662 if (pmd_write(pmd)) {
Martin Schwidefsky1b948d62014-04-03 13:55:01 +02001663 pmdp_flush_direct(mm, address, pmdp);
Gerald Schaeferbe328652013-01-21 16:48:07 +01001664 set_pmd_at(mm, address, pmdp, pmd_wrprotect(pmd));
1665 }
1666}
1667
Gerald Schaefer1ae1c1d2012-10-08 16:30:24 -07001668#define pfn_pmd(pfn, pgprot) mk_pmd_phys(__pa((pfn) << PAGE_SHIFT), (pgprot))
1669#define mk_pmd(page, pgprot) pfn_pmd(page_to_pfn(page), (pgprot))
1670
1671static inline int pmd_trans_huge(pmd_t pmd)
1672{
1673 return pmd_val(pmd) & _SEGMENT_ENTRY_LARGE;
1674}
1675
1676static inline int has_transparent_hugepage(void)
1677{
1678 return MACHINE_HAS_HPAGE ? 1 : 0;
1679}
Gerald Schaefer75077af2012-10-08 16:30:15 -07001680#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682/*
1683 * 31 bit swap entry format:
1684 * A page-table entry has some bits we have to treat in a special way.
1685 * Bits 0, 20 and bit 23 have to be zero, otherwise an specification
1686 * exception will occur instead of a page translation exception. The
1687 * specifiation exception has the bad habit not to store necessary
1688 * information in the lowcore.
Martin Schwidefskye5098612013-07-23 20:57:57 +02001689 * Bits 21, 22, 30 and 31 are used to indicate the page type.
1690 * A swap pte is indicated by bit pattern (pte & 0x603) == 0x402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 * This leaves the bits 1-19 and bits 24-29 to store type and offset.
1692 * We use the 5 bits from 25-29 for the type and the 20 bits from 1-19
1693 * plus 24 for the offset.
1694 * 0| offset |0110|o|type |00|
1695 * 0 0000000001111111111 2222 2 22222 33
1696 * 0 1234567890123456789 0123 4 56789 01
1697 *
1698 * 64 bit swap entry format:
1699 * A page-table entry has some bits we have to treat in a special way.
1700 * Bits 52 and bit 55 have to be zero, otherwise an specification
1701 * exception will occur instead of a page translation exception. The
1702 * specifiation exception has the bad habit not to store necessary
1703 * information in the lowcore.
Martin Schwidefskye5098612013-07-23 20:57:57 +02001704 * Bits 53, 54, 62 and 63 are used to indicate the page type.
1705 * A swap pte is indicated by bit pattern (pte & 0x603) == 0x402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * This leaves the bits 0-51 and bits 56-61 to store type and offset.
1707 * We use the 5 bits from 57-61 for the type and the 53 bits from 0-51
1708 * plus 56 for the offset.
1709 * | offset |0110|o|type |00|
1710 * 0000000000111111111122222222223333333333444444444455 5555 5 55566 66
1711 * 0123456789012345678901234567890123456789012345678901 2345 6 78901 23
1712 */
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001713#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714#define __SWP_OFFSET_MASK (~0UL >> 12)
1715#else
1716#define __SWP_OFFSET_MASK (~0UL >> 11)
1717#endif
Adrian Bunk4448aaf2005-11-08 21:34:42 -08001718static inline pte_t mk_swap_pte(unsigned long type, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
1720 pte_t pte;
1721 offset &= __SWP_OFFSET_MASK;
Martin Schwidefskye5098612013-07-23 20:57:57 +02001722 pte_val(pte) = _PAGE_INVALID | _PAGE_TYPE | ((type & 0x1f) << 2) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 ((offset & 1UL) << 7) | ((offset & ~1UL) << 11);
1724 return pte;
1725}
1726
1727#define __swp_type(entry) (((entry).val >> 2) & 0x1f)
1728#define __swp_offset(entry) (((entry).val >> 11) | (((entry).val >> 7) & 1))
1729#define __swp_entry(type,offset) ((swp_entry_t) { pte_val(mk_swap_pte((type),(offset))) })
1730
1731#define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
1732#define __swp_entry_to_pte(x) ((pte_t) { (x).val })
1733
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001734#ifndef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735# define PTE_FILE_MAX_BITS 26
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001736#else /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737# define PTE_FILE_MAX_BITS 59
Heiko Carstensf4815ac2012-05-23 16:24:51 +02001738#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
1740#define pte_to_pgoff(__pte) \
1741 ((((__pte).pte >> 12) << 7) + (((__pte).pte >> 1) & 0x7f))
1742
1743#define pgoff_to_pte(__off) \
1744 ((pte_t) { ((((__off) & 0x7f) << 1) + (((__off) >> 7) << 12)) \
Martin Schwidefskye5098612013-07-23 20:57:57 +02001745 | _PAGE_INVALID | _PAGE_PROTECT })
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
1747#endif /* !__ASSEMBLY__ */
1748
1749#define kern_addr_valid(addr) (1)
1750
Heiko Carstens17f34582008-04-30 13:38:47 +02001751extern int vmem_add_mapping(unsigned long start, unsigned long size);
1752extern int vmem_remove_mapping(unsigned long start, unsigned long size);
Carsten Otte402b0862008-03-25 18:47:10 +01001753extern int s390_enable_sie(void);
Dominik Dingel3ac8e382014-10-23 12:09:17 +02001754extern int s390_enable_skey(void);
Dominik Dingela13cff32014-10-23 12:07:14 +02001755extern void s390_reset_cmma(struct mm_struct *mm);
Heiko Carstensf4eb07c2006-12-08 15:56:07 +01001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757/*
1758 * No page table caches to initialise
1759 */
Heiko Carstens765a0ca2013-03-23 10:29:01 +01001760static inline void pgtable_cache_init(void) { }
1761static inline void check_pgt_cache(void) { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763#include <asm-generic/pgtable.h>
1764
1765#endif /* _S390_PAGE_H */